- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 134 for x130 (0.21 sec)
-
CHANGELOG/CHANGELOG-1.9.md
* Add-on manager now supports HA masters. ([#55466](https://github.com/kubernetes/kubernetes/pull/55466),[ #55782](https://github.com/x13n),[ @x13n](https://github.com/x13n)) * Hyperkube can now run from a non-standard path. ([#54570](https://github.com/kubernetes/kubernetes/pull/54570)) #### **GCP**
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- cloud.google.com/go/dataproc/v2: v2.0.1 → v2.3.0 - cloud.google.com/go/dataqna: v0.8.1 → v0.8.4 - cloud.google.com/go/datastore: v1.13.0 → v1.15.0 - cloud.google.com/go/datastream: v1.10.0 → v1.10.3 - cloud.google.com/go/deploy: v1.13.0 → v1.17.0 - cloud.google.com/go/dialogflow: v1.40.0 → v1.48.1 - cloud.google.com/go/dlp: v1.10.1 → v1.11.1 - cloud.google.com/go/documentai: v1.22.0 → v1.23.7
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
defaults.putInstance(type, checkNotNull(value)); return this; } /** * Ignore {@code method} in the tests that follow. Returns this object. * * @since 13.0 */ @CanIgnoreReturnValue public NullPointerTester ignore(Method method) { ignoredMembers.add(checkNotNull(method)); return this; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0) -
requirements_lock_3_11.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) -
guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
@Override public final boolean isRunning() { return delegate.isRunning(); } @Override public final State state() { return delegate.state(); } /** * @since 13.0 */ @Override public final void addListener(Listener listener, Executor executor) { delegate.addListener(listener, executor); } /** * @since 14.0 */ @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
* very compact {@code Striped<Lock>} of {@code availableProcessors() * 4} stripes, instead of * possibly thousands of locks which could be created in a {@code Map<K, Lock>} structure. * * @author Dimitris Andreou * @since 13.0 */ @J2ktIncompatible @GwtIncompatible public abstract class Striped<L> { /** * If there are at least this many stripes, we assume the memory usage of a ConcurrentMap will be
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
- golang.org/x/crypto: v0.14.0 → v0.16.0 - golang.org/x/mod: v0.12.0 → v0.14.0 - golang.org/x/net: v0.17.0 → v0.19.0 - golang.org/x/sync: v0.3.0 → v0.5.0 - golang.org/x/sys: v0.13.0 → v0.15.0 - golang.org/x/term: v0.13.0 → v0.15.0 - golang.org/x/text: v0.13.0 → v0.14.0 - golang.org/x/tools: v0.12.0 → v0.16.1 ### Removed _Nothing has changed._ # v1.27.9 ## Downloads for v1.27.9
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2) -
ci/official/requirements_updater/numpy1_requirements/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 - 65.9K bytes - Viewed (0) -
cmd/xl-storage_test.go
if err != nil { return nil, "", err } // Create a sample format.json file
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 66K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
int i = 1 << 29; assertTrue(MinMaxPriorityQueue.isEvenLevel(i - 2)); assertFalse(MinMaxPriorityQueue.isEvenLevel(i - 1)); assertFalse(MinMaxPriorityQueue.isEvenLevel(i)); i = 1 << 30; assertFalse(MinMaxPriorityQueue.isEvenLevel(i - 2)); assertTrue(MinMaxPriorityQueue.isEvenLevel(i - 1)); assertTrue(MinMaxPriorityQueue.isEvenLevel(i));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36K bytes - Viewed (0)