- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 39 for 131072 (0.82 sec)
-
api/go1.14.txt
pkg syscall (freebsd-arm64), const IFF_OACTIVE ideal-int pkg syscall (freebsd-arm64), const IFF_POINTOPOINT = 16 pkg syscall (freebsd-arm64), const IFF_POINTOPOINT ideal-int pkg syscall (freebsd-arm64), const IFF_PPROMISC = 131072 pkg syscall (freebsd-arm64), const IFF_PPROMISC ideal-int pkg syscall (freebsd-arm64), const IFF_PROMISC = 256 pkg syscall (freebsd-arm64), const IFF_PROMISC ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK = 458752 pkg syscall (darwin-arm64), const NOTE_EXIT_DETAIL_MASK ideal-int pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY = 131072 pkg syscall (darwin-arm64), const NOTE_EXIT_MEMORY ideal-int pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED = 524288 pkg syscall (darwin-arm64), const NOTE_EXIT_REPARENTED ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.35.md
- Metrics: Excluded `dryRun` requests from `apiserver_request_sli_duration_seconds`. ([#131092](https://github.com/kubernetes/kubernetes/pull/131092), [@aldudko](https://github.com/aldudko)) [SIG API Machinery and Instrumentation] - Migrated validation in `resource.k8s.io` to declarative validation.
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Dec 17 13:01:55 UTC 2025 - 228.5K bytes - Viewed (0) -
api/go1.2.txt
pkg syscall (linux-386), const CLONE_NEWIPC ideal-int pkg syscall (linux-386), const CLONE_NEWNET = 1073741824 pkg syscall (linux-386), const CLONE_NEWNET ideal-int pkg syscall (linux-386), const CLONE_NEWNS = 131072 pkg syscall (linux-386), const CLONE_NEWNS ideal-int pkg syscall (linux-386), const CLONE_NEWPID = 536870912 pkg syscall (linux-386), const CLONE_NEWPID ideal-int pkg syscall (linux-386), const CLONE_NEWUSER = 268435456
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Oct 18 04:36:59 UTC 2013 - 1.9M bytes - Viewed (1) -
android/guava/src/com/google/common/hash/SipHashFunction.java
* the License. */ /* * SipHash-c-d was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in * "SipHash: a fast short-input PRF" (available at https://131002.net/siphash/siphash.pdf). */ package com.google.common.hash; import static com.google.common.base.Preconditions.checkArgument; import com.google.errorprone.annotations.Immutable; import java.io.Serializable;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 5.3K bytes - Viewed (0) -
guava/src/com/google/common/hash/SipHashFunction.java
* the License. */ /* * SipHash-c-d was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in * "SipHash: a fast short-input PRF" (available at https://131002.net/siphash/siphash.pdf). */ package com.google.common.hash; import static com.google.common.base.Preconditions.checkArgument; import com.google.errorprone.annotations.Immutable; import java.io.Serializable;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 5.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/SignedBytesTest.java
testSortDescending(new byte[] {1}, 0, 1, new byte[] {1}); testSortDescending(new byte[] {1, 2}, 0, 2, new byte[] {2, 1}); testSortDescending(new byte[] {1, 3, 1}, 0, 2, new byte[] {3, 1, 1}); testSortDescending(new byte[] {1, 3, 1}, 0, 1, new byte[] {1, 3, 1}); testSortDescending(new byte[] {-1, -2, 1, 2}, 1, 3, new byte[] {-1, 1, -2, 2}); } @J2ktIncompatible @GwtIncompatible // NullPointerTester
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java
testSortDescending(new int[] {1}, 0, 1, new int[] {1}); testSortDescending(new int[] {1, 2}, 0, 2, new int[] {2, 1}); testSortDescending(new int[] {1, 3, 1}, 0, 2, new int[] {3, 1, 1}); testSortDescending(new int[] {1, 3, 1}, 0, 1, new int[] {1, 3, 1}); testSortDescending( new int[] {GREATEST - 1, 1, GREATEST - 2, 2}, 1, 3, new int[] {GREATEST - 1, GREATEST - 2, 1, 2});
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hashing.java
/** * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit * SipHash-2-4 algorithm</a> using a seed value of {@code k = 00 01 02 ...}. * * @since 15.0 */ public static HashFunction sipHash24() { return SipHashFunction.SIP_HASH_24; } /** * Returns a hash function implementing the <a href="https://131002.net/siphash/">64-bit
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
testSortDescending(new byte[] {1}, 0, 1, new byte[] {1}); testSortDescending(new byte[] {1, 2}, 0, 2, new byte[] {2, 1}); testSortDescending(new byte[] {1, 3, 1}, 0, 2, new byte[] {3, 1, 1}); testSortDescending(new byte[] {1, 3, 1}, 0, 1, new byte[] {1, 3, 1}); testSortDescending( new byte[] {GREATEST - 1, 1, GREATEST - 2, 2}, 1, 3,
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 13.5K bytes - Viewed (0)