- Sort Score
- Result 10 results
- Languages All
Results 531 - 540 of 1,417 for Remote (0.15 sec)
-
guava-testlib/src/com/google/common/collect/testing/google/MultisetElementSetTester.java
Set<E> elementSet = getMultiset().elementSet(); assertTrue(elementSet.remove(e0())); assertEmpty(getMultiset()); assertEquals(expectedSize, getMultiset().size()); } @CollectionFeature.Require(SUPPORTS_REMOVE) public void testElementSetRemoveAbsent() { Set<E> elementSet = getMultiset().elementSet(); assertFalse(elementSet.remove(e3())); expectUnchanged(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
# Punctuation tokens to remove , . ` - _ = ? ' | " ( ) { } [ ] < > * # & ^ $ @ ! ~ : ; + / \ 《 》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TreeBasedTableTest.java
assertFalse(entrySet.remove(immutableEntry(10, 'X'))); assertTrue(entrySet.remove(immutableEntry(20, 'X'))); assertFalse(entrySet.remove(immutableEntry(15, 'X'))); entrySet = row.entrySet(); assertTrue(entrySet.remove(immutableEntry(10, 'X'))); assertFalse(entrySet.remove(immutableEntry(20, 'X'))); assertFalse(entrySet.remove(immutableEntry(15, 'X'))); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 15K bytes - Viewed (0) -
guava/src/com/google/common/collect/MapMakerInternalMap.java
} } @CheckForNull @CanIgnoreReturnValue @Override public V remove(@CheckForNull Object key) { if (key == null) { return null; } int hash = hash(key); return segmentFor(hash).remove(key, hash); } @CanIgnoreReturnValue @Override public boolean remove(@CheckForNull Object key, @CheckForNull Object value) { if (key == null || value == null) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ListsTest.java
assertEquals(asList("5", "2", "3", "4", "6"), toList); fromList.remove(Integer.valueOf(2)); assertEquals(asList("5", "3", "4", "6"), toList); fromList.remove(2); assertEquals(asList("5", "3", "6"), toList); /* toList modifications reflected in fromList */ toList.remove(2); assertEquals(asList(5, 3), fromList); toList.remove("5"); assertEquals(asList(3), fromList); toList.clear();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ListsTest.java
assertEquals(asList("5", "2", "3", "4", "6"), toList); fromList.remove(Integer.valueOf(2)); assertEquals(asList("5", "3", "4", "6"), toList); fromList.remove(2); assertEquals(asList("5", "3", "6"), toList); /* toList modifications reflected in fromList */ toList.remove(2); assertEquals(asList(5, 3), fromList); toList.remove("5"); assertEquals(asList(3), fromList); toList.clear();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeRangeMap.java
TreeRangeMap.this.putAll(rangeMap); } @Override public void clear() { TreeRangeMap.this.remove(subRange); } @Override public void remove(Range<K> range) { if (range.isConnected(subRange)) { TreeRangeMap.this.remove(range.intersection(subRange)); } } @Override public void merge( Range<K> range,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 26.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/ConnectionSpecTest.kt
assertThat(allCipherSuites.equals(null)).isFalse() assertThat(set.remove(ConnectionSpec.MODERN_TLS)).isTrue() assertThat(set.remove(ConnectionSpec.COMPATIBLE_TLS)) .isTrue() assertThat(set.remove(ConnectionSpec.CLEARTEXT)).isTrue() assertThat(set.remove(allTlsVersions)).isTrue() assertThat(set.remove(allCipherSuites)).isTrue() assertThat(set).isEmpty() allTlsVersions.hashCode()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 14.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
assertTrue(cycle.hasNext()); assertThrows(IllegalStateException.class, () -> cycle.remove()); } public void testCycleRemoveSameElementTwice() { Iterator<String> cycle = Iterators.cycle("a", "b"); cycle.next(); cycle.remove(); assertThrows(IllegalStateException.class, () -> cycle.remove()); } public void testCycleWhenRemoveIsNotSupported() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
istioctl/pkg/tag/tag.go
"(available formats: table,json,yaml)") return cmd } func tagRemoveCommand(ctx cli.Context) *cobra.Command { cmd := &cobra.Command{ Use: "remove <revision-tag>", Short: "Remove Istio control plane revision tag", Long: `Remove Istio control plane revision tag. Removing a revision tag should be done with care. Removing a revision tag will disrupt sidecar injection in namespaces
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0)