- Sort Score
- Result 10 results
- Languages All
Results 1021 - 1030 of 1,469 for removed0 (0.13 sec)
-
architecture/ambient/ztunnel-cni-lifecycle.md
Additionally, we MUST accept incoming traffic during this time, both new and existing. Typically, it is rare to get new connections after shutdown has started - once shutdown is triggered the endpoint is marked `NotReady` and removed from load balancing consideration. However, some applications do not utilize Service readiness (connecting directly to the pod, etc).
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 9.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
public boolean isEmpty() { return standardIsEmpty(); } @Override public Iterator<E> iterator() { return standardIterator(); } @Override public boolean remove(@Nullable Object object) { return standardRemove(object); } @Override public boolean removeAll(Collection<?> collection) { return standardRemoveAll(collection); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/xml/ParametricNullness.java
* {@code NullPointerTester} would need are not available) and in case of <a * href="https://bugs.openjdk.java.net/browse/JDK-8202469">JDK-8202469</a> * </ul> * * <p>This annotation is a temporary hack. We will remove it after we're able to adopt the <a * href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/AbstractIteratorTest.java
} haveBeenCalled = true; return 0; } }; assertEquals(0, (int) iter.next()); assertThrows(UnsupportedOperationException.class, iter::remove); } @GwtIncompatible // weak references @J2ktIncompatible @AndroidIncompatible // depends on details of GC public void testFreesNextReference() { Iterator<Object> itr =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 5.7K bytes - Viewed (0) -
guava/src/com/google/common/io/ParametricNullness.java
* {@code NullPointerTester} would need are not available) and in case of <a * href="https://bugs.openjdk.java.net/browse/JDK-8202469">JDK-8202469</a> * </ul> * * <p>This annotation is a temporary hack. We will remove it after we're able to adopt the <a * href="https://jspecify.dev/">JSpecify</a> nullness annotations and <a * href="https://github.com/google/guava/issues/6126#issuecomment-1203145963">tools no longer need * it</a>. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 10 21:27:51 UTC 2022 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("xxx", systemHelper.getHostname()); } finally { envMap.remove("COMPUTERNAME"); } try { envMap.put("HOSTNAME", "yyy"); assertEquals("yyy", systemHelper.getHostname()); } finally { envMap.remove("HOSTNAME"); } } public void test_isEoled() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
.collect(Collectors.toList()).forEach(s -> { if (logger.isDebugEnabled()) { logger.debug("remove old state: {}", s); } states.remove(s); }); final StateData stateData = states.get(state); if (stateData != null) { if (logger.isDebugEnabled()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java
} } void expectRemoveZero(SortedMultiset<E> multiset, Entry<E> entry) { assertEquals(0, multiset.remove(entry.getElement(), entry.getCount())); assertFalse(multiset.remove(entry.getElement())); assertFalse(multiset.elementSet().remove(entry.getElement())); } void expectSetCountFailure(SortedMultiset<E> multiset, Entry<E> entry) { try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 26.1K bytes - Viewed (0) -
cni/pkg/nodeagent/server_test.go
m := getFakeDPWithIPSet(server, fakeClientSet, set) expectPodRemovedFromIPSet(fakeIPSetDeps, pod.Status.PodIPs) // pod is not in fake client, so if this will try to remove annotation, it will fail. err := m.RemovePodFromMesh(fakeCtx, pod, true) fakeIPSetDeps.AssertExpectations(t) assert.NoError(t, err) } func TestMeshDataplaneDelPodErrorDoesntPatchPod(t *testing.T) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 18.7K bytes - Viewed (0) -
cmd/sts-handlers_test.go
c.mustListObjects(ctx, minioClient, bucket) // Validate that the client cannot remove any objects err = minioClient.RemoveObject(ctx, bucket, "someobject", minio.RemoveObjectOptions{}) if err.Error() != "Access Denied." { c.Fatalf("unexpected non-access-denied err: %v", err) } // Remove the policy assignment on the user DN: if err = s.adm.SetPolicy(ctx, "", userDNWithUnicodeDot, false); err != nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 97.1K bytes - Viewed (0)