Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 226 (0.02 sec)

  1. src/main/webapp/js/suggestor.js

        $(this).keydown(function(e) {
          if (
            (e.keyCode >= 48 && e.keyCode <= 90) ||
            (e.keyCode >= 96 && e.keyCode <= 105) ||
            (e.keyCode >= 186 && e.keyCode <= 226) ||
            e.keyCode === 8 ||
            e.keyCode === 32 ||
            e.keyCode === 46
          ) {
            started = true;
            isFocusList = false;
          } else if (e.keyCode === 38) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ContextConfigTest.java

            // needs to be adjusted when default changes
            assertEquals(DialectVersion.SMB210, p3.getMaximumVersion());
    
        }
    
    
        @Test
        // #226
        public void testLegacyConfig () throws CIFSException {
            Properties prop1 = new Properties();
            prop1.setProperty("jcifs.smb.client.enableSMB2", "false");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. api/go1.7.txt

    pkg net/http, const StatusAlreadyReported ideal-int
    pkg net/http, const StatusFailedDependency = 424
    pkg net/http, const StatusFailedDependency ideal-int
    pkg net/http, const StatusIMUsed = 226
    pkg net/http, const StatusIMUsed ideal-int
    pkg net/http, const StatusInsufficientStorage = 507
    pkg net/http, const StatusInsufficientStorage ideal-int
    pkg net/http, const StatusLocked = 423
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrHealInvalidClientToken-221]
    	_ = x[ErrHealMissingBucket-222]
    	_ = x[ErrHealAlreadyRunning-223]
    	_ = x[ErrHealOverlappingPaths-224]
    	_ = x[ErrIncorrectContinuationToken-225]
    	_ = x[ErrEmptyRequestBody-226]
    	_ = x[ErrUnsupportedFunction-227]
    	_ = x[ErrInvalidExpressionType-228]
    	_ = x[ErrBusy-229]
    	_ = x[ErrUnauthorizedAccess-230]
    	_ = x[ErrExpressionTooLong-231]
    	_ = x[ErrIllegalSQLFunctionArgument-232]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/bytes/buffer_test.go

    		}
    		check(t, "TestBasicOperations (4)", &buf, "a")
    
    		buf.WriteByte(testString[1])
    		check(t, "TestBasicOperations (5)", &buf, "ab")
    
    		n, err = buf.Write(testBytes[2:26])
    		if want := 24; err != nil || n != want {
    			t.Errorf("Write: got (%d, %v), want (%d, %v)", n, err, want, nil)
    		}
    		check(t, "TestBasicOperations (6)", &buf, testString[0:26])
    
    		buf.Truncate(26)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Sep 03 20:55:15 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

             * the SMB_COM_SESSION_SETUP_ANDX Response (section 2.2.4.53.2), MUST be set to
             * 0x0000000000000000. For the SMB_COM_SESSION_SETUP_ANDX Response, the SecuritySignature
             * field of the SMB Header SHOULD<226> be set to the SecuritySignature received in the
             * SMB_COM_SESSION_SETUP_ANDX Request (section 2.2.4.53.1).
             */
            if ( this.digest != null && getErrorCode() == 0 ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
Back to top