Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 81 (0.34 sec)

  1. src/cmd/compile/internal/typecheck/builtin.go

    	{"deferrangefunc", funcTag, 74},
    	{"rand32", funcTag, 75},
    	{"makemap64", funcTag, 77},
    	{"makemap", funcTag, 78},
    	{"makemap_small", funcTag, 79},
    	{"mapaccess1", funcTag, 80},
    	{"mapaccess1_fast32", funcTag, 81},
    	{"mapaccess1_fast64", funcTag, 82},
    	{"mapaccess1_faststr", funcTag, 83},
    	{"mapaccess1_fat", funcTag, 84},
    	{"mapaccess2", funcTag, 85},
    	{"mapaccess2_fast32", funcTag, 86},
    	{"mapaccess2_fast64", funcTag, 87},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    	// Calculate the multiplicative inverse via Newton's method.
    	// Quadratic convergence doubles the number of correct bits per iteration.
    	m := d0            // initial guess correct to 3-bits d0*d0 mod 8 == 1
    	m = m * (2 - m*d0) // 6-bits
    	m = m * (2 - m*d0) // 12-bits
    	m = m * (2 - m*d0) // 24-bits
    	m = m * (2 - m*d0) // 48-bits
    	m = m * (2 - m*d0) // 96-bits >= 64-bits
    	m = m & mask
    
    	max := mask / d
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/vcweb.go

    var gitConfig = `
    [user]
    	name = Go Gopher
    	email = ******@****.***
    [init]
    	defaultBranch = main
    [core]
    	eol = lf
    [gui]
    	encoding = utf-8
    `[1:]
    
    // hgrc contains a ~/.hgrc file that attempts to provide
    // deterministic, platform-agnostic behavior for the 'hg' command.
    var hgrc = `
    [ui]
    username=Go Gopher <******@****.***>
    [phases]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/loopbce.go

    	}
    	b.Func.Warnl(b.Pos, "Induction variable: limits %v%v,%v%v, increment %d%s", mb1, mlim1, mlim2, mb2, inc, extra)
    }
    
    func minSignedValue(t *types.Type) int64 {
    	return -1 << (t.Size()*8 - 1)
    }
    
    func maxSignedValue(t *types.Type) int64 {
    	return 1<<((t.Size()*8)-1) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64bool(s, f, nan, nan, result&1 == 1)
    
    	fail64(s, g, zero, zero, ev64[result>>16&1])
    	fail64(s, g, zero, one, ev64[result>>12&1])
    	fail64(s, g, zero, inf, ev64[result>>8&1])
    	fail64(s, g, zero, nan, ev64[result>>4&1])
    	fail64(s, g, nan, nan, ev64[result>>0&1])
    
    	{
    		zero := float32(zero)
    		one := float32(one)
    		inf := float32(inf)
    		nan := float32(nan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.76", // #4, this is what the throttling would be with the old rate
            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.76", // #4, this is what the throttling would be with the old rate
            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "mediumJavaMultiProject",
        "linux" : 84
      }, {
        "testProject" : "mediumMonolithicJavaProject",
        "linux" : 81
      } ]
    }, {
      "scenario" : "org.gradle.performance.experiment.maven.JavaTestGradleVsMavenPerformanceTest.clean assemble (Gradle vs Maven)",
      "durations" : [ {
        "testProject" : "mediumJavaMultiProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/hash/HashTestUtils.java

       */
      private static void assertHashStringWithSurrogatesEquivalence(
          HashFunction hashFunction, Random random) {
        int size = random.nextInt(8) + 1;
        char[] chars = new char[size];
        for (int i = 0; i < chars.length; i++) {
          chars[i] = random.nextBoolean() ? randomLowSurrogate(random) : randomHighSurrogate(random);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
Back to top