- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 134 for x130 (0.02 sec)
-
requirements_lock_3_10.txt
--hash=sha256:f9c30c464cb2ddfbc2ddf9400287701270fdc0f14be5f08a1e3939f1e749b455 # via # -r ci/official/requirements_updater/requirements.in # tb-nightly h5py==3.13.0 \ --hash=sha256:10894c55d46df502d82a7a4ed38f9c3fdbcb93efb42e25d275193e093071fade \ --hash=sha256:1870e46518720023da85d0895a1960ff2ce398c5671eac3b1a41ec696b7105c3 \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Sep 03 23:57:17 UTC 2025 - 67.7K bytes - Viewed (0) -
requirements_lock_3_9.txt
--hash=sha256:f9c30c464cb2ddfbc2ddf9400287701270fdc0f14be5f08a1e3939f1e749b455 # via # -r ci/official/requirements_updater/requirements.in # tb-nightly h5py==3.13.0 \ --hash=sha256:10894c55d46df502d82a7a4ed38f9c3fdbcb93efb42e25d275193e093071fade \ --hash=sha256:1870e46518720023da85d0895a1960ff2ce398c5671eac3b1a41ec696b7105c3 \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Sep 03 23:57:17 UTC 2025 - 66.6K bytes - Viewed (0) -
CHANGELOG.md
those APIs are stable. * Fix: Change `MockWebServer.close()` to cancel ongoing calls that are blocked on a delay. * Upgrade: [Okio 3.13.0][okio_3_13_0]. This release also stabilizes many APIs in the `mockwebserver3` artifact that's new in 5.0. * Breaking: `RecordedRequest.body` is now nullable. Null is used when the request does not have a body.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
src/cmd/asm/internal/arch/arm64.go
curQ = 1 case "D1": curSize = 3 curQ = 0 case "D2": curSize = 3 curQ = 1 default: return 0, errors.New("invalid arrangement in ARM64 register list") } return (int64(curQ) & 1 << 30) | (int64(curSize&3) << 10), nil } // ARM64RegisterListOffset generates offset encoding according to AArch64 specification. func ARM64RegisterListOffset(firstReg, regCnt int, arrangement int64) (int64, error) {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
buf[8] = 4; // parameterOffset low buf[9] = 0; // high buf[10] = 6; // parameterDisplacement low buf[11] = 0; // high buf[12] = 7; // dataCount low buf[13] = 0; // high buf[14] = 8; // dataOffset low buf[15] = 0; // high buf[16] = 9; // dataDisplacement low buf[17] = 0; // high buf[18] = 1; // setupCount (only one byte)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrBucketTaggingNotFound-125] _ = x[ErrObjectLockInvalidHeaders-126] _ = x[ErrInvalidTagDirective-127] _ = x[ErrPolicyAlreadyAttached-128] _ = x[ErrPolicyNotAttached-129] _ = x[ErrExcessData-130] _ = x[ErrPolicyInvalidName-131] _ = x[ErrNoTokenRevokeType-132] _ = x[ErrAdminOpenIDNotEnabled-133] _ = x[ErrAdminNoSuchAccessKey-134] _ = x[ErrInvalidEncryptionMethod-135] _ = x[ErrInvalidEncryptionKeyID-136]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
cmd/globals.go
// If all pools reach this, we will use all pools with regular placement. diskReserveFraction = 0.15 // diskAssumeUnknownSize is the size to assume when an unknown size upload is requested. diskAssumeUnknownSize = 1 << 30 // diskMinInodes is the minimum number of inodes we want free on a disk to perform writes. diskMinInodes = 1000 // tlsClientSessionCacheSize is the cache size for client sessions.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/collect/SetsTest.java
Set<Object> sumToEighthMaxIntElements = newHashSet(objectWithHashCode(1 << 29), objectWithHashCode(0)); assertPowerSetHashCode(1 << 30, sumToEighthMaxIntElements); Set<Object> sumToQuarterMaxIntElements = newHashSet(objectWithHashCode(1 << 30), objectWithHashCode(0)); assertPowerSetHashCode(1 << 31, sumToQuarterMaxIntElements); } public void testPowerSetShowOff() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.3K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
*/ @Test void testWellKnownSids() { assertNotNull(SID.EVERYONE); assertEquals("S-1-1-0", SID.EVERYONE.toString()); assertNotNull(SID.CREATOR_OWNER); assertEquals("S-1-3-0", SID.CREATOR_OWNER.toString()); assertNotNull(SID.SYSTEM); assertEquals("S-1-5-18", SID.SYSTEM.toString()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* iterable no longer contains the corresponding element. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#flatMap} (using a function that produces * streams, not iterables). * * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0) */ public <T extends @Nullable Object> FluentIterable<T> transformAndConcat( Function<? super E, ? extends Iterable<? extends T>> function) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0)