E D R , A S I H C RSS

Full text search for "NOT"

NOT


Search BackLinks only
Display context of search results
Case-sensitive searching
  • ProjectPrometheus/DataBaseSchema . . . . 26 matches
         CREATE TABLE IF NOT EXISTS BtoBRel(
         uid int (11) NOT NULL auto_increment,
         bookid varchar(12) NOT NULL DEFAULT '',
         relbookid varchar(12) NOT NULL DEFAULT '',
         relpoint int(11) NOT NULL DEFAULT 0,
         CREATE TABLE IF NOT EXISTS UtoBRel(
         uid int (11) NOT NULL auto_increment,
         userid varchar(12) NOT NULL DEFAULT '',
         bookid varchar(12) NOT NULL DEFAULT '',
         viewpoint int(11) NOT NULL DEFAULT 0,
         hviewpoint int(11) NOT NULL DEFAULT 0,
         lviewpoint int(11) NOT NULL DEFAULT 0,
         CREATE TABLE IF NOT EXISTS book(
         bookid varchar(12) NOT NULL DEFAULT '',
         isbn varchar(10) NOT NULL DEFAULT '',
         totalpoint int(11) NOT NULL DEFAULT 0,
         title varchar(40) NOT NULL DEFAULT '',
         CREATE TABLE IF NOT EXISTS puser(
         userid varchar(16) NOT NULL DEFAULT '',
         password varchar(8) NOT NULL DEFAULT '',
  • MFC/RasterOperation . . . . 12 matches
         || R2_NOT || 그림이 화면색의 반대가 된다. 출력이 항상 보이게 하려고 할때 쓰인다. ||
         || R2_NOTCOPYPEN || 펜색과 반대의 색으로 그려짐 ||
         || R2_MERGEPENNOT || 펜의 색과 배경과 반대색을 OR로 만들어진 색으로 그려짐 ||
         || R2_MASKPENNOT || 펜 색과 배경과 반대색을 AND로 만들어진 색으로 그려짐 ||
         || R2_MERGENOTPEN || 펜의 반대색과 배경색을 OR로 연산한 색으로 그려짐 ||
         || R2_MASKNOTPEN || 펜의 반대색과 배경색을 AND로 연산한 색으로 그려짐 ||
         || R2_NOTMERGEPEN || R2_MERGEPEN의 반대색으로 그려짐 ||
         || R2_NOTMASKPEN || R2_MASKPEN색과 반대의 색으로 그려짐 ||
         || R2_NOTXORPEN || R2_XORPEN과 반대의 색으로 그려짐 ||
          ''ROP와 관계된 모드는 R2_NOTXORPEN이다.''
         ||NOTXOR || 1 || 0 || 0 ||
         ||NOTXOR || 1 || 1 || 1 ||
  • MFC/MessageMap . . . . 10 matches
          // NOTE - the ClassWizard will add and remove member functions here.
          // DO NOT EDIT what you see in these blocks of generated code !
          // NOTE - the ClassWizard will add and remove mapping macros here.
          // DO NOT EDIT what you see in these blocks of generated code!
         || control notification message || 컨트롤 폼과 같은 것으로 부터 부모 윈도우에게 전달되는 WM_COMMAND메시지이다. ||
         #define WM_COMMNOTIFY 0x0044 /* no longer suported */
          * wParam for WM_POWER window message and DRV_POWER driver notification
         #define WM_NOTIFY 0x004E
         #define WM_NOTIFYFORMAT 0x0055
         #define WM_PARENTNOTIFY 0x0210
         #define WM_IME_NOTIFY 0x0282
          * NOTE: All Message Numbers below 0x0400 are RESERVED.
  • OurMajorLangIsCAndCPlusPlus/errno.h . . . . 8 matches
         ||20||int ENOTDIR||필요하다고 요청된 디렉토리가 존재하지 않을 때 발생.||
         ||25||int ENOTTY||하나의 보통 파일에서 터미날 모드를 정하려 시도하는것과 같은 부적합한 입출력 제어 오퍼레이션 에 발생.||
         ||41||int ENOTEMPTY||빈 디렉토리라고 예상했던 곳이 비어있지 않다. 특별히 이 에러는 당신이 디렉토리를 지우려 시도 할 때 발생한다.||
         || ||int ENOTBLK||어떤 상황에서 주어진 파일에 특별한 블록이 없는 경우. 예를 들면, 보통의 파일을 유닉스 파일 시스 템에 마운트하려 하면 이 에러가 발생한다.||
         || ||int EOPNOTSUPP||당신이 요청한 그 오퍼레이션을 지원하지 않는다. 어떤 소켓함수는 소켓의 모든 타입들에서 이해할 수 없고 다른것들은 모든 통신 프로토콜을 충족시키지 못할 것이다.||
         || ||int EADDRNOTAVAIL||요청된 소켓주소가 유용하지 않다.; 예를 들어 소켓이름으로 주려고 시도한 것이 로컬 호스 트 이름과 맞지 않다.||
         || ||int ENOTCONN||그 소켓은 어느것과도 연결할수 없다. 첫째로 데이터의 목적지를 정하지 않고 한 소켓을 통해 데이터를 전송하려 할 때 이 에러가 발생한다.||
         || ||int ERENOTE||이미 NFS 마운트 파일로 지정된 한 파일을 한 원격 파일 시스템이 NFS 마운트로 만들려 시도할 때 발생.||
  • PHP-방명록만들기 . . . . 6 matches
          or die("not connect");
          mysql_query("CREATE DATABASE IF NOT EXISTS problem CHARACTER SET euckr",$connect);//$dbname = mysql_create_db("problem", $connnect);와 동일
          $mt = "create table IF NOT EXISTS Memo (";
          $mt = $mt."Idx INT( 11 ) NOT NULL AUTO_INCREMENT PRIMARY KEY, ";
          $mt = $mt."Name VARCHAR( 20 ) NOT NULL, ";
          $mt = $mt."Content TINYTEXT NOT NULL, ";
          $mt = $mt."Timelog DATETIME NOT NULL)";
  • JollyJumpers/서지혜 . . . . 3 matches
          goto NOT_JOLLY;
          goto NOT_JOLLY;
         NOT_JOLLY:
          printf("Not jolly\n");
          puts(F?"Jolly":"Not jolly");
  • GuiTestingWithMfc . . . . 2 matches
          // NOTE - the ClassWizard will add and remove mapping macros here.
          // DO NOT EDIT what you see in these blocks of generated code!
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
          // TODO: Add your control notification handler code here
  • Kongulo . . . . 2 matches
         # notice, this list of conditions and the following disclaimer.
         # copyright notice, this list of conditions and the following disclaimer
         # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
         # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
         Will not work unless Google Desktop Search 1.0 or later is installed.
         # this is much more lenient, not requiring HTML to be valid.
          '''We handle not-modified-since explicitly.'''
          if not options.pw:
          if not url.startswith('http') or not self.match_url.match(url):
          if doc.code == 304: # not modified since last time
          if depth > 0 and not link in self.scheduled:
          # the events we send, not returning until the user becomes idle.
          if not self.options.loop:
          'It will not refetch pages that haven't changed.')
          # do nothing.
  • OurMajorLangIsCAndCPlusPlus/setjmp.c . . . . 2 matches
         // notice, this list of conditions and the following disclaimer.
         // notice, this list of conditions and the following disclaimer in the
         // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
         // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  • XMLStudy_2002/Start . . . . 2 matches
         === NOTATION ===
          *NOTATION은 Unparsed Entity를 처리하기 위한 방법이나 아직은 브라우저에서 지원이 안됨
  • django/Model . . . . 2 matches
          "id" integer NOT NULL PRIMARY KEY,
          "name" varchar(10) NOT NULL
  • html5/webSqlDatabase . . . . 2 matches
          tx.executeSql('CREATE TABLE IF NOT EXISTS ' +
          tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id unique, text)');
  • 데블스캠프2009/목요일/연습문제/MFC/서민관 . . . . 2 matches
          // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
          // when the application's main window is not a dialog
          // NOTE: the ClassWizard will add member initialization here
          // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
          // NOTE: the ClassWizard will add DDX and DDV calls here
          // when the application's main window is not a dialog
  • 창섭/배치파일 . . . . 2 matches
         ◇ 사용법 : If [NOT] <조건> <명령>
         - NOT : 지정한 조건의 반대 조건일 때만 실행합니다.
         if not %1 ==%2 goto process
  • Bicoloring/문보창 . . . . 1 match
          cout << "NOT BICOLORABLE.\n";
  • Boost/SmartPointer . . . . 1 match
         // copyright notice appears in all copies. This software is provided "as is"
         // argument, so would not work as intended. At that point the code was
          std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset!
         // Note that even though example::implementation is an incomplete type in
  • BoostLibrary/SmartPointer . . . . 1 match
         // copyright notice appears in all copies. This software is provided "as is"
         // argument, so would not work as intended. At that point the code was
          std::set<FooPtr,FooPtrOps> foo_set; // NOT multiset!
         // Note that even though example::implementation is an incomplete type in
  • EightQueenProblem/용쟁호투 . . . . 1 match
         IF NOT wf_create_queen() THEN GOTO NS
  • Garbage collector for C and C++ . . . . 1 match
         # Finalization and the test program are not usable in this mode.
         # -DNO_SIGNALS does not disable signals during critical parts of
         # impact. However, it is dangerous for many not-quite-ANSI C
         # This is on by default. Turning it off has not been extensively tested with
         # -DNO_EXECUTE_PERMISSION may cause some or all of the heap to not
         # -DGC_NO_OPERATOR_NEW_ARRAY declares that the C++ compiler does not support
         # you don't want to (or can't) look at. It may not work for
         # Not recommended unless you are implementing a language that specifies
         # the garbage collector detects a value that looks almost, but not quite,
         # collector somewhat, but not drastically.
         # code should NOT be compiled with -fomit-frame-pointer.
         # processors, though with no performance benefit. May not run on other
         # in a way that usually does not involve acquisition of a global lock.
  • JollyJumpers/이승한 . . . . 1 match
          else cout<<"Not jolly\n";
          boolJolly[ line ] = 0; // NOTjolly 임을 boolJolly배열에 저장
  • Linux . . . . 1 match
         It is NOT protable (uses 386 task switching etc), and it probably never
  • MFC/Socket . . . . 1 match
          // NOTE - the ClassWizard will add and remove member functions here.
  • MoinMoinNotBugs . . . . 1 match
         == This is *NOT* a Browser bug with CSS rendering ==
         '''The HTML being produced is invalid:''' ''Error: start tag for "LI" omitted, but its declaration does not permit this.'' That is, UL on its lonesome isn't permitted: it must contain LI elements.
         Also worth noting that ''Error: Missing DOCTYPE declaration at start of document'' comes up at the HEAD tag; and ''Error: document type does not allow element "FONT" here'' for a FONT tag that's being used inside a PRE element.
         Please note also that to be "identical," the second P tag should ''follow'' the /UL, not precede it. The implication as-is is that the P belongs to the UL block, when it doesn't. It may be worth using closing paragraph tags, as an aide to future XHTML compatibility, and to make paragraph enclosures wholly explicit.
         This is not an Opera bug. The HTML is invalid. '''The blocks are overlapping, when they are not allowed to:''' P UL P /UL UL P /UL is not a sensible code sequence. (It should be P UL /UL P UL /UL P... giddyupgiddyup?)
  • NSIS/예제1 . . . . 1 match
          File "C:\windows\notepad.exe"
         File: "NOTEPAD.EXE" [compress] 20148/53248 bytes
  • NSIS/예제2 . . . . 1 match
          File "C:\winnt\notepad.exe"
          CreateShortCut "$SMPROGRAMS\Example2\Example2 (notepad).lnk" "$INSTDIR\notepad.exe" "" "$INSTDIR\notepad.exe" 0
          Delete $INSTDIR\notepad.exe
         ; It will install notepad.exe into a directory that the user selects,
          File "C:\winnt\notepad.exe"
          CreateShortCut "$SMPROGRAMS\Example2\Example2 (notepad).lnk" "$INSTDIR\notepad.exe" "" "$INSTDIR\notepad.exe" 0
          Delete $INSTDIR\notepad.exe
         File: "NOTEPAD.EXE" [compress] 21719/50960 bytes
         CreateShortCut: "$SMPROGRAMS\Example2\Example2 (notepad).lnk"->"$INSTDIR\notepad.exe" icon:$INSTDIR\notepad.exe,0, showmode=0x0, hotkey=0x0
         Delete: "$INSTDIR\notepad.exe"
  • OpenGL스터디_실습 코드 . . . . 1 match
          //setup kind of line which is outter line or not.
          glStencilFunc(GL_NOTEQUAL, 1.0f, 1.0f);
  • RubyLanguage/Expression . . . . 1 match
         || ! ~ + - || 단항연산자 (역논리, bit NOT, unary plus, unary minus) ||
         || Not || 역논리 ||
          * and (=> &&), or (=> ||), not (!)
          * 기호로 쓰인 것(&&, ||, !)이 단어로 쓰인 것(and, or, not)보다 우선순위가 높음
          * unless: if의 부정형. if not으로 대체 가능
  • 새싹교실/2013/케로로반/실습자료 . . . . 1 match
         Social Executive of Computer Science and Engineering will hold a bar event. There are many pretty girls and handsome guys. It will be great day for you. Just come to the bar event and drink. There are many side dishes and beer. Please enjoy the event. but DO NOT drink too much, or FBI will come to catch you. Thank you.
  • 이영호/미니프로젝트#1 . . . . 1 match
          if(strstr(msg, "NOTICE AUTH :*** Checking Ident") != NULL){
Found 29 matching pages out of 7547 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.4742 sec