Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for 124 (0.04 sec)

  1. doc/next/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.24 {#introduction}
    
    **Go 1.24 is not yet released. These are work-in-progress release notes.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Jul 22 17:55:04 UTC 2024
    - 408 bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    ## Linker {#linker}
    
    ## Bootstrap {#bootstrap}
    
    <!-- go.dev/issue/64751 -->
    As mentioned in the [Go 1.22 release notes](/doc/go1.22#bootstrap), Go 1.24 now requires
    Go 1.22.6 or later for bootstrap.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Aug 20 17:52:42 UTC 2024
    - 338 bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    ## Ports {#ports}
    
    ### Linux {#linux}
    
    As [announced](go1.23#linux) in the Go 1.23 release notes, Go 1.24 requires Linux
    kernel version 3.2 or later.
    
    ### WebAssembly {#wasm}
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 23 19:37:35 UTC 2024
    - 258 bytes
    - Viewed (0)
  4. doc/godebug.md

    and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).
    
    ### Go 1.24
    
    Go 1.24 changed the global [`math/rand.Seed`](/pkg/math/rand/#Seed) to be a
    no-op. This behavior is controlled by the `randseednop` setting.
    For Go 1.24 it defaults to `randseednop=1`.
    Using `randseednop=0` reverts to the pre-Go 1.24 behavior.
    
    Go 1.24 added new values for the `multipathtcp` setting.
    The possible values for `multipathtcp` are now:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Oct 28 14:46:33 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. CHANGELOG/README.md

    - [CHANGELOG-1.28.md](./CHANGELOG-1.28.md)
    - [CHANGELOG-1.27.md](./CHANGELOG-1.27.md)
    - [CHANGELOG-1.26.md](./CHANGELOG-1.26.md)
    - [CHANGELOG-1.25.md](./CHANGELOG-1.25.md)
    - [CHANGELOG-1.24.md](./CHANGELOG-1.24.md)
    - [CHANGELOG-1.23.md](./CHANGELOG-1.23.md)
    - [CHANGELOG-1.22.md](./CHANGELOG-1.22.md)
    - [CHANGELOG-1.21.md](./CHANGELOG-1.21.md)
    - [CHANGELOG-1.20.md](./CHANGELOG-1.20.md)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Fri Oct 04 21:31:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/ModelVersionParserTest.java

            assertNotContains(c, "1.5");
    
            c = versionParser.parseVersionConstraint("[1,3),(3,5)");
            assertContains(c, "1", "2", "4");
            assertNotContains(c, "3", "5");
    
            c = versionParser.parseVersionConstraint("[1,3),(3,)");
            assertContains(c, "1", "2", "4");
            assertNotContains(c, "3");
        }
    
        private void assertNotContains(VersionConstraint c, String... versions) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. CHANGELOG/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
      - release-engineering-approvers
      - release-managers
      - AuraSinis # 1.24 Release Notes Lead
      - cici37 # 1.23 Release Notes Lead
      - csantanapr # 1.25 Release Notes Lead
      - harshanarayana # 1.27 Release Notes Lead
      - ramrodo # 1.26 Release Notes Lead
      - sanchita-07 # 1.28 Release Notes Lead
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 24 16:11:28 UTC 2024
    - 801 bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeMultimapExplicitTest.java

      }
    
      public void testToString() {
        Multimap<String, Integer> multimap = create();
        multimap.put("foo", 3);
        multimap.put("bar", 1);
        multimap.putAll("foo", asList(-1, 2, 4));
        multimap.putAll("bar", asList(2, 3));
        multimap.put("foo", 1);
        assertEquals("{bar=[3, 2, 1], foo=[4, 3, 2, 1, -1]}", multimap.toString());
      }
    
      public void testGetComparator() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

            val b2bit8 = mappedTo[0] and 0x80 != 0
            val b3bit8 = mappedTo[1] and 0x80 != 0
            return when {
              b2bit8 && b3bit8 -> 127
              b3bit8 -> 126
              b2bit8 -> 125
              else -> 124
            }
          }
    
        val b2: Int
          get() = mappedTo[0] and 0x7f
    
        val b3: Int
          get() = mappedTo[1] and 0x7f
      }
    
      data class InlineDelta(
        override val rangeStart: Int,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheStatsTest.java

      }
    
      public void testPlus() {
        CacheStats one = new CacheStats(11, 13, 15, 13, 11, 9);
        CacheStats two = new CacheStats(53, 47, 41, 39, 37, 35);
    
        CacheStats sum = two.plus(one);
        assertEquals(124, sum.requestCount());
        assertEquals(64, sum.hitCount());
        assertThat(sum.hitRate()).isEqualTo(64.0 / 124);
        assertEquals(60, sum.missCount());
        assertThat(sum.missRate()).isEqualTo(60.0 / 124);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 03 18:10:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top