Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 226Z (0.03 sec)

  1. test-site/public/javascripts/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;
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  2. 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)
  3. .teamcity/performance-test-durations.json

        "linux" : 226
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.up-to-date assemble (parallel false)",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 568
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 226
      } ]
    }, {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Sep 12 14:38:24 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/math/LongMath.java

          }
    
          @Override
          long squareMod(long a, long m) {
            long aHi = a >>> 32; // < 2^31
            long aLo = a & 0xFFFFFFFFL; // < 2^32
    
            /*
             * a^2 == aHi^2 * 2^64 + aHi * aLo * 2^33 + aLo^2
             *     == (aHi^2 * 2^32 + aHi * aLo * 2) * 2^32 + aLo^2
             * We carry out this computation in modular arithmetic.  Since times2ToThe32Mod accepts any
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/LongMath.java

          }
    
          @Override
          long squareMod(long a, long m) {
            long aHi = a >>> 32; // < 2^31
            long aLo = a & 0xFFFFFFFFL; // < 2^32
    
            /*
             * a^2 == aHi^2 * 2^64 + aHi * aLo * 2^33 + aLo^2
             *     == (aHi^2 * 2^32 + aHi * aLo * 2) * 2^32 + aLo^2
             * We carry out this computation in modular arithmetic.  Since times2ToThe32Mod accepts any
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top