Search Options

Results per page
Sort
Preferred Languages
Advance

Results 631 - 640 of 717 for failed (0.04 sec)

  1. 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...
    Fri Apr 01 18:49:15 UTC 2022
      11.1K bytes
  2. ImmutableMultimap.java

    be associated with each key newly added to the L201: * builder after this call. This does not change semantics, but may improve performance if L202: * {@code expectedValuesPerKey} is a good estimate. L203: * L204: * <p>This may be called more than once; each newly added key will use the most recent call to L205: * {@link #expectedValuesPerKey} as its hint. L206: * L207: * @throws IllegalArgumentException if {@code expectedValuesPerKey} is negative L208: * @since 33.3.0...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      27.9K bytes
  3. 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/android/guava/src/com/g...
    Sun Aug 07 02:38:22 UTC 2022
      8.3K bytes
  4. AbstractFuture.java

    (AbstractFuture<? extends V>) delegate; L406: value = other.value; L407: throwable = other.throwable; L408: // don't copy the mayInterruptIfRunning bit, for consistency with the server, to ensure that L409: // interruptTask() is called if and only if the bit is true and because we cannot infer the L410: // interrupt status from non AbstractFuture futures. L411: state = other.state; L412: L413: notifyAndClearListeners(); L414: return; L415: } L416:...
    github.com/google/guava/guava-gwt/src-super/com...
    Mon Jan 22 19:37:41 UTC 2024
      12.3K bytes
  5. SequentialExecutorTest.java

    -> executor.execute(task)); L264: assertEquals(0, numCalls.get()); L265: reject.set(false); L266: executor.execute(task); L267: assertEquals(1, numCalls.get()); L268: } L269: L270: /* L271: * Under Android, MyError propagates up and fails the test? L272: * L273: * TODO(b/218700094): Does this matter to prod users, or is it just a feature of our testing L274: * environment? If the latter, maybe write a custom Executor that avoids failing the test when it L275: * sees an Error?...
    github.com/google/guava/guava-tests/test/com/go...
    Fri Oct 18 22:10:29 UTC 2024
      11.4K bytes
  6. Ints.java

    L628: for (int i = 0; i < len; i++) { L629: // checkNotNull for GWT (do not optimize) L630: array[i] = ((Number) checkNotNull(boxedArray[i])).intValue(); L631: } L632: return array; L633: } L634: L635: /** L636: * Returns a fixed-size list backed by the specified array, similar to {@link L637: * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)}, but any attempt to L638: * set a value to {@code null} will result in a {@link NullPointerException}....
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 25 18:05:56 UTC 2024
      31K bytes
  7. ImmutableSetMultimap.java

    K> keyComparator) { L378: super.orderKeysBy(keyComparator); L379: return this; L380: } L381: L382: /** L383: * Specifies the ordering of the generated multimap's values for each key. L384: * L385: * <p>If this method is called, the sets returned by the {@code get()} method of the generated L386: * multimap and its {@link Multimap#asMap()} view are {@link ImmutableSortedSet} instances. L387: * However, serialization does not preserve that property, though it does...
    github.com/google/guava/android/guava/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      26.2K bytes
  8. Table.java

    java.util.Collection; L25:import java.util.Map; L26:import java.util.Set; L27:import javax.annotation.CheckForNull; L28:import org.checkerframework.checker.nullness.qual.Nullable; L29: L30:/** L31: * A collection that associates an ordered pair of keys, called a row key and a column key, with a L32: * single value. A table may be sparse, with only a small fraction of row key / column key pairs L33: * possessing a corresponding value. L34: * L35: * <p>The mappings corresponding to a given row key may be...
    github.com/google/guava/guava/src/com/google/co...
    Sat Jun 17 14:40:53 UTC 2023
      10.7K bytes
  9. SmoothRateLimiter.java

    should speed up for a while, to take advantage of these resources. This is important when the L52: * rate is applied to networking (limiting bandwidth), where past underutilization typically L53: * translates to "almost empty buffers", which can be filled immediately. L54: * L55: * On the other hand, past underutilization could mean that "the server responsible for handling L56: * the request has become less ready for future requests", i.e. its caches become stale, and L57: * requests become...
    github.com/google/guava/guava/src/com/google/co...
    Tue Apr 04 09:45:04 UTC 2023
      19.3K bytes
  10. 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
Back to top