Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for Tutorial - Cookie Parameters. PR [#2261](https://github.com/tiangolo/fastapi/pull/2261) by [@alicrazy1947](https://github.com/alicrazy1947).
    * 🌐 Add Japanese translation for Tutorial - Static files. PR [#2260](https://github.com/tiangolo/fastapi/pull/2260) by [@tokusumi](https://github.com/tokusumi).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
Back to top