- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 1,064 for 21 (0.04 sec)
-
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
return false; } } return true; }; TypeWithDuplicates a = new TypeWithDuplicates(1, 1); TypeWithDuplicates b1 = new TypeWithDuplicates(2, 1); TypeWithDuplicates b2 = new TypeWithDuplicates(2, 2); TypeWithDuplicates c = new TypeWithDuplicates(3, 1); CollectorTester.of(collector, equivalence)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 46.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* unchanged. If {@code value} is less than {@code min}, {@code min} is returned, and if {@code * value} is greater than {@code max}, {@code max} is returned. * * <p><b>Java 21+ users:</b> Use {@code Math.clamp} instead. Note that that method is capable of * constraining a {@code long} input to an {@code int} range. * * @param value the {@code long} value to constrain
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
api/go1.11.txt
pkg debug/elf, const R_RISCV_TLS_DTPREL64 R_RISCV pkg debug/elf, const R_RISCV_TLS_GD_HI20 = 22 pkg debug/elf, const R_RISCV_TLS_GD_HI20 R_RISCV pkg debug/elf, const R_RISCV_TLS_GOT_HI20 = 21 pkg debug/elf, const R_RISCV_TLS_GOT_HI20 R_RISCV pkg debug/elf, const R_RISCV_TLS_TPREL32 = 10 pkg debug/elf, const R_RISCV_TLS_TPREL32 R_RISCV pkg debug/elf, const R_RISCV_TLS_TPREL64 = 11
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 22 03:48:56 UTC 2018 - 25K bytes - Viewed (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const AF_CCITT ideal-int pkg syscall (netbsd-arm64-cgo), const AF_CHAOS = 5 pkg syscall (netbsd-arm64-cgo), const AF_CHAOS ideal-int pkg syscall (netbsd-arm64-cgo), const AF_CNT = 21 pkg syscall (netbsd-arm64-cgo), const AF_CNT ideal-int pkg syscall (netbsd-arm64-cgo), const AF_COIP = 20 pkg syscall (netbsd-arm64-cgo), const AF_COIP ideal-int pkg syscall (netbsd-arm64-cgo), const AF_DATAKIT = 9
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
assertFailsWith<IOException> { client.newCall(Request.Builder().url(server.url("/0")).build()).execute() }.also { expected -> assertThat(expected.message).isEqualTo("Too many follow-up requests: 21") } } /** * We had a bug where we were passing a null route to the authenticator. * https://github.com/square/okhttp/issues/3809 */ @Test fun authenticateWithNoConnection() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
api/go1.10.txt
pkg debug/elf, const R_386_GOT32X = 43 pkg debug/elf, const R_386_GOT32X R_386 pkg debug/elf, const R_386_IRELATIVE = 42 pkg debug/elf, const R_386_IRELATIVE R_386 pkg debug/elf, const R_386_PC16 = 21 pkg debug/elf, const R_386_PC16 R_386 pkg debug/elf, const R_386_PC8 = 23 pkg debug/elf, const R_386_PC8 R_386 pkg debug/elf, const R_386_SIZE32 = 38 pkg debug/elf, const R_386_SIZE32 R_386
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- [v1.17.0-beta.1](#v1170-beta1) - [Downloads for v1.17.0-beta.1](#downloads-for-v1170-beta1) - [Client Binaries](#client-binaries-21) - [Server Binaries](#server-binaries-21) - [Node Binaries](#node-binaries-21) - [Changelog since v1.17.0-alpha.3](#changelog-since-v1170-alpha3) - [Action Required](#action-required-1) - [Other notable changes](#other-notable-changes-5)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbSessionImpl.java
* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetsTest.java
Iterator<Set<Integer>> i = powerSet.iterator(); assertEquals(ImmutableSet.of(), i.next()); assertEquals(ImmutableSet.of(1), i.next()); assertEquals(ImmutableSet.of(2), i.next()); assertEquals(ImmutableSet.of(2, 1), i.next()); assertEquals(ImmutableSet.of(3), i.next()); assertEquals(ImmutableSet.of(3, 1), i.next()); assertEquals(ImmutableSet.of(3, 2), i.next()); assertEquals(ImmutableSet.of(3, 2, 1), i.next());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.3K bytes - Viewed (0)