Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 386 for 13 (0.02 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

        - [Other notable changes](#other-notable-changes-12)
    - [v1.3.0-alpha.5](#v130-alpha5)
      - [Downloads](#downloads-13)
      - [Changes since v1.3.0-alpha.4](#changes-since-v130-alpha4)
        - [Action Required](#action-required-2)
        - [Other notable changes](#other-notable-changes-13)
    - [v1.3.0-alpha.4](#v130-alpha4)
      - [Downloads](#downloads-14)
      - [Changes since v1.3.0-alpha.3](#changes-since-v130-alpha3)
    Registered: 2025-05-30 09:05
    - Last Modified: 2020-12-24 02:28
    - 84K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_DECnet = 12
    pkg syscall (netbsd-arm64-cgo), const AF_DECnet ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_DLI = 13
    pkg syscall (netbsd-arm64-cgo), const AF_DLI ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_E164 = 26
    pkg syscall (netbsd-arm64-cgo), const AF_E164 ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_ECMA = 8
    Registered: 2025-05-27 11:13
    - Last Modified: 2019-08-08 18:44
    - 452.6K bytes
    - Viewed (0)
  3. samples/tlssurvey/src/main/resources/okhttp_3.13.txt

    Jesse Wilson <******@****.***> 1712022255 -0400
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-04-02 01:44
    - 591 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertFalse(set.containsAll((Collection<?>) ImmutableSet.of("blah")));
      }
    
      public void testRange() {
        assertEquals(Range.closed(1, 3), ContiguousSet.create(Range.closed(1, 3), integers()).range());
        assertEquals(Range.closed(1, 3), ContiguousSet.closed(1, 3).range());
        assertEquals(
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-10 18:30
    - 19.6K bytes
    - Viewed (0)
  5. internal/s3select/genmessage.go

    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"hash/crc32"
    )
    
    func genRecordsHeader() {
    	buf := new(bytes.Buffer)
    
    	buf.WriteByte(13)
    	buf.WriteString(":message-type")
    	buf.WriteByte(7)
    	buf.Write([]byte{0, 5})
    	buf.WriteString("event")
    
    	buf.WriteByte(13)
    	buf.WriteString(":content-type")
    	buf.WriteByte(7)
    	buf.Write([]byte{0, 24})
    	buf.WriteString("application/octet-stream")
    
    	buf.WriteByte(11)
    Registered: 2025-05-25 19:28
    - Last Modified: 2021-08-19 01:35
    - 4.4K bytes
    - Viewed (0)
  6. .github/workflows/update-rbe.yml

            map sigbuild-r2.13-python3.8 2.13-python3.8
            map sigbuild-r2.13-python3.9 2.13-python3.9
            map sigbuild-r2.13-python3.10 2.13-python3.10
            map sigbuild-r2.13-python3.11 2.13-python3.11
            # TF 2.13 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.13-clang 2.13-python3.9
            map sigbuild-r2.13-clang-python3.8 2.13-python3.8
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-01 08:48
    - 7.2K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/Dockerfile

    RUN /setup.python.sh python3.11 devel.requirements.txt
    RUN /setup.python.sh python3.12 devel.requirements.txt
    RUN /setup.python.sh python3.13 devel.requirements.txt
    # python3.13-nogil is a free-threaded build of python3.13
    RUN /setup.python.sh python3.13-nogil devel.requirements.txt
    
    FROM devel as tf
    # Setup TF Python environment.
    COPY devel.requirements.txt /devel.requirements.txt
    COPY setup.python.sh /setup.python.sh
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-05-01 08:44
    - 4.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ImmutableRangeSetTest.java

        ImmutableRangeSet<Integer> rangeSet =
            ImmutableRangeSet.<Integer>builder()
                .add(Range.closed(5, 8))
                .add(Range.closedOpen(1, 3))
                .build();
    
        assertThat(rangeSet.asRanges())
            .containsExactly(Range.closedOpen(1, 3), Range.closed(5, 8))
            .inOrder();
    
        assertTrue(rangeSet.intersects(Range.closed(1, 2)));
        assertTrue(rangeSet.intersects(Range.open(5, 8)));
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-25 16:19
    - 21.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

        assertThat(iia.indexOf(1)).isEqualTo(0);
        assertThat(iia.indexOf(8)).isEqualTo(5);
        assertThat(iia.indexOf(4)).isEqualTo(-1);
        assertThat(ImmutableLongArray.of(13).indexOf(13)).isEqualTo(0);
        assertThat(ImmutableLongArray.of().indexOf(21)).isEqualTo(-1);
        assertThat(iia.subArray(1, 5).indexOf(1)).isEqualTo(0);
      }
    
      public void testLastIndexOf() {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 20.5K bytes
    - Viewed (0)
  10. ci/official/containers/ml_build_arm64/Dockerfile

    RUN /setup.python.sh python3.10 requirements.txt
    RUN /setup.python.sh python3.11 requirements.txt
    RUN /setup.python.sh python3.12 requirements.txt
    RUN /setup.python.sh python3.13 requirements.txt
    # python3.13-nogil is a free-threaded build of python3.13.
    RUN /setup.python.sh python3.13-nogil requirements.txt
    
    # Python commands by default run under 3.11
    RUN ln -sf /usr/bin/python3.11 /usr/bin/python3
    RUN ln -sf /usr/bin/python3.11 /usr/bin/python
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-02-18 17:54
    - 3.5K bytes
    - Viewed (0)
Back to top