E D R , A S I H C RSS

Full text search for "service"

service


Search BackLinks only
Display context of search results
Case-sensitive searching
  • 영호의바이러스공부페이지 . . . . 11 matches
          mov ah,40h ; DOS write-to-handle service
          mov ah,4eh ; Call DOS find first service
          mov ah,4eh ; Call DOS find first service
          mov ah,3bh ; Change directory DOS service
          mov ah,43h ; Call DOS service to do it
          mov ah,3dh ; Open file handle DOS service
          mov ah,3fh ; DOS read-from-handle service
          mov al,1 ; Set file date/time sub-service
          mov ah,57h ; Get/Set file date and time service
          mov ah,3eh ; Close handle DOS service
          mov ah,09h ; Use DOS print string service
  • ProjectPrometheus/CookBook . . . . 6 matches
         protected void service(
          //super.service(request, response);
          String serviceName = (String) request.getParameter("service");
         getParameter 가 호출되기 전에 request의 인코딩이 세팅되어야 한다. 현재 Prometheus의 Controller의 경우 service 의 명을 보고 각각의 서비스에게 실행 권한을 넘기는데, 가장 처음에 request의 characterEncoding 을 세팅해야 한다. 차후 JSP/Servlet 컨테이너들의 업그레이드 되어야 할 내용으로 생각됨 자세한 내용은 http://javaservice.net/~java/bbs/read.cgi?m=appserver&b=engine&c=r_p&n=957572615 참고
         === Resin 을 NT,2000 의 Service 로 등록 ===
  • 임시 . . . . 5 matches
         http://webservices.amazon.com/AWSECommerceService/2006-02-15/AWSECommerceService.wsdl
         [http://developer.amazonwebservices.com/connect/entry.jspa?externalID=101&categoryID=19 Amazon E-Commerce Service API]
         base URLs : http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
         http://webservices.amazon.com/onca/xml?Service=AWSECommerceService
         This section explains how to use REST (Representational State Transfer) to make requests through Amazon E-Commerce Service (ECS). REST is a Web services protocol that was created by Roy Fielding in his Ph.D. thesis (see Architectural Styles and the Design of Network-based Software Architectures for more details about REST).
  • Android/WallpaperChanger . . . . 4 matches
          final Display d = ((WindowManager)getSystemService(WINDOW_SERVICE)).getDefaultDisplay();
          * Service는 안드로이드 Activity와 별도로 구현해야 하며 2.3.3버전 이후 단독 실행이 불가능하다고 하다.
          * 또한 Service는 AndroidManifest.xml파일에 당연히 등록을 해야한다. (Application탭 -> Service등록)
         package june.myservice.com;
         public class MyserviceActivity extends Activity {
          ComponentName mService; // 시작 서비스의 이름
          startHelloService();
          stopHelloService();
          private void startHelloService() {
          mService = startService(new Intent(this, MyService.class));
          mTextView.append(mService.toShortString()+" started.\n");
          private void stopHelloService() {
          if (mService == null) {
          mTextView.append("No requested service.\n");
          i.setComponent(mService);
          if (stopService(i))
          mTextView.append(mService.toShortString()+" is stopped.\n");
          mTextView.append(mService.toShortString()+" is alrady stopped.\n");
          package june.myservice.com;
         import android.app.Service;
  • ProjectPrometheus/Journey . . . . 4 matches
          * Recommender, lightView, heavyView service 작성. view 추가.
         속좁은 ["1002"] 이 상민쓰에게 신경질 부리던날로 기억 -_-; 일종의 Test 에 대한 압박을 받아서이긴 한데, 처음에는 'Model, Logic' 부분에 대해서만 Test 정도 붙이면 되겠지 라고 생각했는데, Servlet 으로 작성한 Controller 부분이 커지면서, 각각 Command 에 해당하는 (service 라고 이름지었음) 부분에 대해 로직이 붙었기 때문이다. 근데, Servlet 이여서 테스트를 못붙이고, 작업은 작업대로 진행되는데 테스트 붙일 방법을 생각하지 못하는데, 잘 진행되어간다고 보이는 작업 발묶는것 같아서 이야기 못하고 꿍해있다는.
          * 대안을 생각중인데, 일종의 Facade 를 만들고, Controller 의 각 service 들은 Facade 만 이용하는 식으로 작성하면 어떨까. 그렇게 한다면 Facade 에 대해서 Test Code 를 작성할 수 있으리라 생각. 또는, Servlet 부분에 대해서는 AcceptanceTest 의 관점으로 접근하는 것을 생각. 또는, cactus 에 대해서 알아봐야 하려나.. --["1002"]
          ''[http://javaservice.net/~java/bbs/read.cgi?m=devtip&b=ejb&c=r_p&n=1003899808&p=2&s=t#1003899808 EJB의 효용성에 관해서], [http://www-106.ibm.com/developerworks/library/ibm-ejb/index.html EJB로 가야하는지 말아야 하는지 망설여질때 도움을 주는 체크 리스트], 그리고 IR은 아마도 http://no-smok.net/nsmk/InformationRadiator 일듯 --이선우''
  • 작은자바이야기 . . . . 4 matches
          * template method 패턴이 사용됐다. protected로 선언된 service method가 template method에 해당되는데 abstract가 아닌 이유는 기본 구현을 주고 원하는 호출에 대해 오버라이드를 해서 사용하기 위함이다.
          * service : 외부에서 서버로 request가 들어올 시 서버에서 servlet의 service method를 실행시킴. service(req, res) 내부에서 req를 통해 request의 값을 받아서 res의 값을 변경시켜 외부로 내보내준다. 해당 결과를 do*의 이름이 붙은 method(doGet, doPost 등)로 전달해준다.
  • PatternOrientedSoftwareArchitecture . . . . 3 matches
          * services 들을 명확히 하여라. 가장 중요한 구현 원칙은 레이어들이 엄격하게 각자 분리 되어야 한다는 점이다. 레이어들 사이에 공유되는 모듈은 엄격한 layering 약하게 한다. 그리고 낮은 레이어보다 높은 레이어에 더 많은 service를 넣는것이 더 낮다.
         레이어들 |=> 이것들을 생각 하고나서 define components and service
  • ProjectZephyrus/간단CVS사용설명 . . . . 3 matches
          ''' 1. service에 포트 등록'''
         vi /etc/services
         service cvspserver
  • RSS . . . . 3 matches
         The technology behind RSS allows you to subscribe to websites that have provided RSS feeds, these are typically sites that change or add content regularly. To use this technology you need to set up some type of aggregation service. Think of this aggregation service as your personal mailbox. You then have to subscribe to the sites that you want to get updates on. Unlike typical subscriptions to pulp-based newspapers and magazines, your RSS subscriptions are free, but they typically only give you a line or two of each article or post along with a link to the full article or post.
         Before RSS, several similar formats already existed for syndication, but none achieved widespread popularity or are still in common use today, and most were envisioned to work only with a single service. For example, in 1997 Microsoft created Channel Definition Format for the Active Channel feature of Internet Explorer 4.0. Another was created by Dave Winer of UserLand Software. He had designed his own XML syndication format for use on his Scripting News weblog, which was also introduced in 1997 [1].
  • 2006신입생 . . . . 2 matches
          * [http://services.nexodyne.com/email/]를 이용하면 [http://services.nexodyne.com/email/icon/.LOjICs%2BQCXnd%2BAz8g%3D%3D/7vKivYE%3D/SG90bWFpbA%3D%3D/0/image.png]처럼 그림으로 이메일 주소를 표기 할 수 있습니다. 무료입니다.-_-
  • CleanCodeWithPairProgramming . . . . 2 matches
          1. Tomcat 서비스 내리기 (포트 8080으로 겹쳐서..) : service tomcat stop
          1. Jenkins 서비스 재시작 : service jenkins restart
  • Leonardong . . . . 2 matches
         나휘동, 03학번입니다. 메일은 [http://services.nexodyne.com/email/icon/nOHTEok0CpQ2cg%3D%3D/65OQ5Ws%3D/WWFob28%3D/20/image.png] MSN 메신저 는 [http://services.nexodyne.com/email/icon/XqXhYjfoW4xIr8o%3D/3foV4yk%3D/SG90bWFpbA%3D%3D/0/image.png]입니다.
  • NSIS/예제4 . . . . 2 matches
         설치중에 윈도우 서비스를 멈췄다가 살리는 스크립트. 이것때문에 삽질을 좀 했다....-_-;; servicelib.nsh 파일을 인클루드 해줘야한다.
         !include "servicelib.nsh"
          !insertmacro SERVICE "stop" "WinVNC4" ""
          !insertmacro SERVICE "start" "WinVNC4" ""
  • Plugin/Chrome/네이버사전 . . . . 2 matches
          "http://api.flickr.com/services/rest/?" +
         // See: http://www.flickr.com/services/api/misc.urls.html
  • ProjectPrometheus/BugReport . . . . 2 matches
          * {{{~cpp DBConnectoinManager}}} 관련 주의 사항 http://javaservice.net/~java/bbs/read.cgi?m=dbms&b=jdbc&c=r_p&n=1019574430&p=2&s=d#1019574430
          * 다른 Conntion Pooling 용으로 http://www.bitmechanic.com/ 를 생각할수 있으며, 한글 자료는 http://javaservice.net/~java/bbs/read.cgi?m=dbms&b=jdbc&c=r_p&n=1034293525&p=1&s=d#1034293525 에 소개되어 있다.
  • ProjectPrometheus/Iteration5 . . . . 2 matches
         |||||| viewbookservice 작성 ||
         || SearchBookList Page에서 viewbookservice 로 연결 || 1 || ○ ||
  • ProjectZephyrus/Thread . . . . 2 matches
          [http://javaservice.net/~java/bbs/read.cgi?m=devtip&b=servlet&c=r_p&n=973389459&k=고려사항&d=t#973389459 JDBC 연동시 코딩고려사항(Transaction처리) - 제3탄-] [[BR]]
          [http://javaservice.net/~java/bbs/read.cgi?m=devtip&b=jdbc&c=r_p&n=1018622537&p=1&s=t#1018622537 PreparedStatement 의 허와 실]''
  • Atom . . . . 1 match
         Before the Atom work entered the IETF process, the group produced "Atom 0.3", which has support from a fairly wide variety of syndication tools both on the publishing and consuming side. In particular, it is generated by several Google-related services, namely Blogger and Gmail.
  • Chapter II - Real-Time Systems Concepts . . . . 1 match
         작은 시스템에서는 시스템의 효율성을 위해 보단 간편하고 일반적인 디자인을 사용한다고 한다. 실제로 어플리케이션이 작동하는 부분을 Background System이라고 하며 ISR (interrupt service rountines) 라고 불리우는 인터럽트 부분을 Foreground system이라고 한다.
  • ComponentObjectModel . . . . 1 match
         There exists a limited backward compatibility in that a COM object may be used in .NET by implementing a runtime callable wrapper (RCW), and .NET objects may be used in COM objects by calling a COM callable wrapper. Additionally, several of the services that COM+ provides, such as transactions and queued components, are still important for enterprise .NET applications.
  • ComputerNetworkClass/Exam2006_2 . . . . 1 match
          Integrated Service(flow-based), Differentiated Service(service-based) 에대한 전반적인 이해를 하는 문제. 해당 기법에 WFQ를 적용하는 방법에 대한 이해를 묻는 문제로 약간 응용해서 적으란 것으로 보임. 책에 DS에 대한 설명은 WRED, RIO에 대한 설명만 되어있었고, 이 방식은 Queuing 에 의한 WFQ의 사후 처리가 아닌 사전 체리에 관련된 내용이었음. 솔직히 WFQ 왜 냈는지 모르겠음. -_-;;
  • CvsNt . . . . 1 match
         [http://www.cvsnt.org/ NT service 지원 CVS Server]
  • DataCommunicationSummaryProject/Chapter5 . . . . 1 match
          === Service Requirements ===
          * 따라서 6가지의 service의 broad class 디자인 만듬
  • EnglishSpeaking/2011년스터디 . . . . 1 match
          * There are four members in my family: my father, mother, and a younger brother. Well, actually there are five including our dog. My father was a military officer for twenty years. He recently retired from service and now works in a weaponry company. My mother is a typical housewife. She takes care of me and my brother and keeps our house running well. My brother is attending a university in the U.S.A. He just entered the university as a freshman and is adjusting to the environment. I miss the memory of fighting over things with him. The last member of my family is my dog named Joy. She is a Maltese terrier and my mother named her Joy to bring joy into our family. That's about it for the introduction of my family members.
  • FreechalAlbumSpider . . . . 1 match
          늦게서야 보게 되어서..; 지금도 작동을 할런지는 잘 모르겠습니다. 알바때문에 바빠서 유지보수를 못하는 중인지라.. freechal service UI 가 바뀌면 깨지는 녀석일것인지라..; 사용하기전에 필요한 것으론 Python 2.2x 버전 정도와 MySQLdb 라이브러리가 필요하고요. 해당 proper.py 화일을 맞춰주신뒤, freechalscript.py 를 실행해주시면 됩니다. 같은 역할을 하는 프로그램은 http://www.perlmania.or.kr 에서 먼저 구현된걸로 기억합니다. 거기서 해당 강좌도 있던걸로 기억하오니 참조하세요. --[1002]
  • InterWiki . . . . 1 match
          * [http://www.wikiservice.at/dse/wiki.cgi? DseWiki]
  • ModelingSimulationClass/Exam2006_2 . . . . 1 match
         5. 두시스템의 average arrival time 과 average service time 은 같다. M/M/1 Queue 2개와 M/M/2 Queue 1개를 비교하는데, 어느 시스템의 Wq가 더 짧은가?
  • NeoCoin/Server . . . . 1 match
         /etc/services
  • OOP . . . . 1 match
         Program consists of objects interacting with eachother Objects provide services.
  • ProjectPrometheus/EngineeringTask . . . . 1 match
         || ViewBook Linker 만들기 (and register as a service) ||
         || ViewBook 정보를 보여주는 JSP Page 작성. Servlet 내의 Service 로 등록 ||
         || UI 작성 + Controller Service 등록 (고려 : 서평은 일반 방명록 스타일. 페이지 구분은 일단 없음) ||
  • ResponsibilityDrivenDesign . . . . 1 match
         Object 란 단순히 logic 과 data 묶음 이상이다. Object 는 service-provider 이며, information holder 이며, structurer 이며, coordinator 이며, controller 이며, 바깥 세상을 위한 interfacer 이다. 각각의 Object 들은 자신이 맡은 부분에 대해 알며, 역할을 해 내야 한다. 이러한 ResponsibilityDrivenDesign 은 디자인에 대한 유연한 접근을 가능하게 한다. 다른 디자인 방법의 경우 로직과 데이터를 각각 따로 촛점을 맞추게끔 하였다. 이러한 접근은 자칫 나무만 보고 숲을 보지 못하는 실수를 저지르게 한다. RDD는 디자인과 구현, 그리고 책임들에 대한 재디자인에 대한 실천적 조언을 제공한다.
  • ServiceOrientedProgramming . . . . 1 match
          * [http://www.openwings.org/download/specs/ServiceOrientedIntroduction.pdf Introduction to service oriented programming]
  • UsenetMacro . . . . 1 match
         This works well with GoogleGroups Beta service. This helps make links to GoogleGroups with text remotely extracted from usenet topic.
  • Z&D토론/학회명칭토론 . . . . 1 match
         See Also [http://zeropage.org/jsp/board/thin/?table=open&service=view&command=list&page=0&id=5086&search=&keyword=&order=num 2002년1월30일회의록]
  • Z&D토론백업 . . . . 1 match
         참고 : [http://zeropage.org/jsp/board/thin/?table=open&service=view&command=list&page=3&id=4926&search=&keyword=&order=num 2002년1월7일회의록]
  • ZeroPageServer/AboutCracking . . . . 1 match
          * 2002-12-17 [http://zeropage.org/jsp/board/thin/index.jsp?table=open&service=view&page=0&id=6631 권고메일]
  • ZeroPageServer/Mirroring . . . . 1 match
          service rsync
  • ZeroPage_200_OK/note . . . . 1 match
          * fast CGI는 단독실행 대신 deamon(service)로 실행된다.
  • zennith/w2kDefaultProcess . . . . 1 match
         사용자가 미리 지정한 시간에 작업을 실행시키는 Task Scheduler Service
         스풀된 프린트/팩스 작업을 책임지는 spooler service
         Services.exe - 작업관리자에서 종료 불가
         시스템 서비스들을 시작/종료/상호작용하는 역할을 담당하는 Service Control
  • zeropageBlog . . . . 1 match
          * 블로그 관리자 메일은 [http://services.nexodyne.com/email/icon/XS9S2vaD8Dp0Nwul/3jgUDRo%3D/R01haWw%3D/0/image.png] 입니다.
  • 레밍딜레마 . . . . 1 match
         시리즈 물인데, 같은 시리즈의 하나인 혜영이가 남긴 감상 [http://zeropage.org/jsp/board/thin/?table=multimedia&service=view&command=list&page=0&id=145&search=&keyword=&order=num 네안데르탈인의 그림자] 와 같은 짧고 뜻 깊은 이야기이다. 왜 이 책을 통해서 질문법을 통한 실용적이며, 진짜 실행하는, 이루어지는 비전 창출의 중요성을 다시 한번 생각하게 되었다. ["소크라테스 카페"] 에서 저자가 계속 주장하는 질문법의 힘을 새삼 느낄수 있었다.
  • 병역문제어떻게해결할것인가 . . . . 1 match
          * 가장 좋은 깃헙 저장소로 [https://github.com/sesang06/awesome-alternative-military-service Awesome Alternative Military Service]를 추천합니다. 해당 저장소를 만든 사람은 현역 대학생으로 재배정 TO를 받으신 분입니다.
  • 서지혜/단어장 . . . . 1 match
          I got a call from a man who need services and wanted his ex-wife to be his aide.
  • 영호의해킹공부페이지 . . . . 1 match
         to the RegisterService() function thus registering the program as a service,
          szRSP db "RegisterServiceProcess",0
          push 1 ; 1 = Register Service, 0 = Unregister Serv.
          call ebx ; call RegisterServiceProcess
         Service Provider Codes
  • 정규표현식/스터디/반복찾기/예제 . . . . 1 match
         bash_completion debconf.conf gnome-settings-daemon java modprobe.d printcap services w3m
Found 45 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.5685 sec