Search Options

Results per page
Sort
Preferred Languages
Advance

Results 561 - 570 of 717 for failed (0.03 sec)

  1. Cache.java

    lifetime of the cache. L161: * L162: * <p><b>Warning:</b> this cache may not be recording statistical data. For example, a cache L163: * created using {@link CacheBuilder} only does so if the {@link CacheBuilder#recordStats} method L164: * was called. If statistics are not being recorded, a {@code CacheStats} instance with zero for L165: * all values is returned. L166: * L167: */ L168: CacheStats stats(); L169: L170: /** L171: * Returns a view of the entries stored in this cache as a...
    github.com/google/guava/guava/src/com/google/co...
    Sun Aug 07 02:38:22 UTC 2022
      7.9K bytes
  2. BridgeInterceptor.kt

    L1:/* L2: * Licensed to the Apache Software Foundation (ASF) under one or more L3: * contributor license agreements. See the NOTICE file distributed with L4: * this work for additional information regarding copyright ownership. L5: * The ASF licenses this file to You under the Apache License, Version 2.0 L6: * (the "License"); you may not use this file except in compliance with L7: * the License. You may obtain a copy of the License at L8: * L9: * http://www.apache.org/licenses/LICENSE-2.0...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Jan 08 01:13:22 UTC 2024
      4.2K bytes
  3. CollectionRemoveAllTester.java

    L134: UnsupportedOperationException.class, L135: () -> collection.removeAll(MinimalCollection.of(e0()))); L136: expectUnchanged(); L137: assertTrue(collection.contains(e0())); L138: } L139: L140: /* L141: * AbstractCollection fails the removeAll(null) test when the subject L142: * collection is empty, but we'd still like to test removeAll(null) when we L143: * can. We split the test into empty and non-empty cases. This allows us to L144: * suppress only the former. L145:...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      7.6K bytes
  4. CacheReferencesTest.java

    assertEquals(ImmutableSet.of(key2), cache.asMap().keySet()); L119: assertThat(cache.asMap().values()).contains(value2); L120: assertEquals(ImmutableSet.of(immutableEntry(key2, value2)), cache.asMap().entrySet()); L121: } L122: } L123: L124: // fails in Maven with 64-bit JDK: https://github.com/google/guava/issues/1568 L125: L126: private void assertCleanup( L127: LoadingCache<Integer, String> cache, L128: CountingRemovalListener<Integer, String> removalListener) { L129: L130: //...
    github.com/google/guava/guava-tests/test/com/go...
    Mon Oct 21 14:28:19 UTC 2024
      6.2K bytes
  5. LICENSE

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Tue Oct 22 13:56:22 UTC 2024
      10.5K bytes
  6. FilesCreateTempDirTest.java

    com.google.common.truth.Truth.assertThat; L23:import static java.nio.file.attribute.PosixFilePermission.OWNER_EXECUTE; L24:import static java.nio.file.attribute.PosixFilePermission.OWNER_READ; L25:import static java.nio.file.attribute.PosixFilePermission.OWNER_WRITE; L26:import static org.junit.Assert.assertThrows; L27: L28:import java.io.File; L29:import java.io.IOException; L30:import java.nio.file.attribute.PosixFileAttributeView; L31:import java.nio.file.attribute.PosixFileAttributes; L32:import junit.framework.TestCase;...
    github.com/google/guava/android/guava-tests/tes...
    Fri Oct 06 17:11:11 UTC 2023
      4.3K bytes
  7. EsAbstractConditionBean.java

    return new ConditionBeanExceptionThrower(); L94: } L95: L96: @Override L97: public void xsetPaging(boolean paging) { L98: // Do nothing because this is unsupported on ConditionBean. L99: // And it is possible that this method is called by PagingInvoker. L100: } L101: L102: @Override L103: public void enablePagingCountLater() { L104: // nothing L105: } L106: L107: @Override L108: public void disablePagingCountLater() { L109: // nothing L110: } L111:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      17.8K bytes
  8. FilteredEntryMultimap.java

    L131: } L132: L133: @Override L134: Collection<V> createValues() { L135: return new FilteredMultimapValues<>(this); L136: } L137: L138: @Override L139: Iterator<Entry<K, V>> entryIterator() { L140: throw new AssertionError("should never be called"); L141: } L142: L143: @Override L144: Map<K, Collection<V>> createAsMap() { L145: return new AsMap(); L146: } L147: L148: @Override L149: Set<K> createKeySet() { L150: return asMap().keySet(); L151: } L152: L153: boolean removeEntriesIf(Predicate<?...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      12.1K bytes
  9. CharEscaper.java

    or {@code null} if no escaping was needed L82: */ L83: @CheckForNull L84: protected abstract char[] escape(char c); L85: L86: /** L87: * Returns the escaped form of a given literal string, starting at the given index. This method is L88: * called by the {@link #escape(String)} method when it discovers that escaping is required. It is L89: * protected to allow subclasses to override the fastpath escaping function to inline their L90: * escaping test. See {@link CharEscaperBuilder} for an...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jan 18 20:55:09 UTC 2022
      6.7K bytes
  10. LICENSE

    L106: L107: (d) If the Work includes a "NOTICE" text file as part of its L108: distribution, then any Derivative Works that You distribute must L109: include a readable copy of the attribution notices contained L110: within such NOTICE file, excluding those notices that do not L111: pertain to any part of the Derivative Works, in at least one L112: of the following places: within a NOTICE text file distributed L113: as part of the Derivative Works;...
    github.com/codelibs/fess/LICENSE
    Tue May 08 21:35:34 UTC 2018
      11.1K bytes
Back to top