- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for anymore (0.06 sec)
-
guava/src/com/google/common/collect/ImmutableMapValues.java
Object writeReplace() { return super.writeReplace(); } @GwtIncompatible @J2ktIncompatible /* * The mainline copy of ImmutableMapValues doesn't produce this serialized form anymore, though * the backport does. For now, we're keeping the class declaration in *both* flavors so that both * flavors can read old data or data from the other flavor. However, we strongly discourage
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
assertEquals(Integer.valueOf(3600), defaultExpire); } // Test cookie cipher public void test_provideCookieCipher() { // provideCookieCipher is not directly exposed anymore // Testing through cookie spec creation instead // CookieSpec is not directly available for testing assertNotNull(cookieResourceProvider); } // Test with null configuration values
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterators.java
@Override public boolean hasNext() { /* * Don't store a new Iterator until we know the user can't remove() the last returned * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating * the new one. The result is a ConcurrentModificationException or other bad behavior. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 50.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- DRA: The scheduler plugin prevented abnormal filter runtimes by timing out after 10 seconds. This was configurable...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.30.md
- Fixed a `1.27.0+` regression in kubeadm: The kubelet patch configuration will not be uploaded into the `kube-system/kubelet-config` ConfigMap anymore. ([#123093](https://github.com/kubernetes/kubernetes/pull/123093), [@SataQiu](https://github.com/SataQiu)) - Fixed a bug in `ValidatingAdmissionPolicy` that caused policies using CRD parameters to fail to synchronize.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 18 18:59:10 UTC 2025 - 398.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Platform.java
// We want the JDK Pattern compiler: // - under Android (where it hurts startup performance) // - even for the JVM in our open-source release (https://github.com/google/guava/issues/3147) // If anyone in our monorepo uses the Android copy of Guava on a JVM, that would be unfortunate. // But that is only likely to happen in Robolectric tests, where the risks of JDK regex are low. return new JdkPatternCompiler(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.1K bytes - Viewed (0) -
.github/workflows/ci.yml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 4.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
assertTrue(changed); } public void testAddAllToSet() { Set<String> alreadyThere = new LinkedHashSet<>(asList("already", "there")); List<String> oneMore = Lists.newArrayList("there"); boolean changed = Iterators.addAll(alreadyThere, oneMore.iterator()); assertThat(alreadyThere).containsExactly("already", "there").inOrder(); assertFalse(changed); } @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
assertTrue(changed); } public void testAddAllToSet() { Set<String> alreadyThere = new LinkedHashSet<>(asList("already", "there")); List<String> oneMore = Lists.newArrayList("there"); boolean changed = Iterators.addAll(alreadyThere, oneMore.iterator()); assertThat(alreadyThere).containsExactly("already", "there").inOrder(); assertFalse(changed); } @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
* * <p>Under j2objc, the necessary APIs exist, but some (perhaps all) return stub values, like * empty arrays. Presumably {@link NullPointerTester} could likewise misbehave under j2objc, but I * don't know that anyone uses it there, anyway. */ private enum NullnessAnnotationReader { FROM_DECLARATION_AND_TYPE_USE_ANNOTATIONS { @Override boolean isNullable(Invokable<?, ?> invokable) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 24.9K bytes - Viewed (0)