Search Options

Results per page
Sort
Preferred Languages
Advance

Results 601 - 610 of 717 for failed (0.04 sec)

  1. MoreObjects.java

    L188: } L189: L190: /** L191: * Adds a name/value pair to the formatted output in {@code name=value} format. If {@code value} L192: * is {@code null}, the string {@code "null"} is used, unless {@link #omitNullValues()} is L193: * called, in which case this name/value pair will not be added. L194: */ L195: @CanIgnoreReturnValue L196: public ToStringHelper add(String name, @CheckForNull Object value) { L197: return addHolder(name, value); L198: } L199: L200: /**...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      16.1K bytes
  2. FluentIterable.java

    fluent iterable whose {@code Iterator} cycles indefinitely over the elements of this L366: * fluent iterable. L367: * L368: * <p>That iterator supports {@code remove()} if {@code iterable.iterator()} does. After {@code L369: * remove()} is called, subsequent cycles omit the removed element, which is no longer in this L370: * fluent iterable. The iterator's {@code hasNext()} method returns {@code true} until this fluent L371: * iterable is empty. L372: * L373: * <p><b>Warning:</b> Typical...
    github.com/google/guava/android/guava/src/com/g...
    Tue Sep 24 13:42:31 UTC 2024
      35.7K bytes
  3. LICENSE

    L108: L109: (d) If the Work includes a "NOTICE" text file as part of its L110: distribution, then any Derivative Works that You distribute must L111: include a readable copy of the attribution notices contained L112: within such NOTICE file, excluding those notices that do not L113: pertain to any part of the Derivative Works, in at least one L114: of the following places: within a NOTICE text file distributed L115: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Sun Sep 22 18:50:45 UTC 2024
      10.6K bytes
  4. LICENSE

    L108: L109: (d) If the Work includes a "NOTICE" text file as part of its L110: distribution, then any Derivative Works that You distribute must L111: include a readable copy of the attribution notices contained L112: within such NOTICE file, excluding those notices that do not L113: pertain to any part of the Derivative Works, in at least one L114: of the following places: within a NOTICE text file distributed L115: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Sun Sep 22 18:50:45 UTC 2024
      10.6K bytes
  5. Multiset.java

    collection that supports order-independent equality, like {@link Set}, but may have duplicate L32: * elements. A multiset is also sometimes called a <i>bag</i>. L33: * L34: * <p>Elements of a multiset that are equal to one another are referred to as <i>occurrences</i> of L35: * the same single element. The total number of occurrences of an element in a multiset is called L36: * the <i>count</i> of that element (the terms "frequency" and "multiplicity" are equivalent, but L37: * not used in this API). Since...
    github.com/google/guava/android/guava/src/com/g...
    Sat Jun 17 14:40:53 UTC 2023
      19.7K bytes
  6. CacheBuilder.java

    weigher to use in calculating the weight of cache entries L573: * @return this {@code CacheBuilder} instance (for chaining) L574: * @throws IllegalStateException if a weigher was already set or {@link #maximumSize(long)} was L575: * previously called L576: * @since 11.0 L577: */ L578: @GwtIncompatible // To be supported L579: @CanIgnoreReturnValue // TODO(b/27479612): consider removing this L580: public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher( L581: Weigher<? super...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 18 19:07:49 UTC 2024
      52K bytes
  7. ImmutableListMultimapTest.java

    p<?, ?> mm) -> ImmutableList.copyOf(mm.asMap().entrySet())) L426: .and(Equivalence.equals()); L427: ImmutableListMultimap<Character, Character> empty = ImmutableListMultimap.of(); L428: ImmutableListMultimap<Character, Character> filled = L429: ImmutableListMultimap.<Character, Character>builder() L430: .putAll('b', Arrays.asList('a', 'n', 'a', 'n', 'a')) L431: .putAll('a', Arrays.asList('p', 'p', 'l', 'e')) L432: .putAll('c', Arrays.asList('a',...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      25.4K bytes
  8. help_ja.jsp

    標準で利用可能なフィールドは url, host, site, title, content, L10: content_length, last_modified および mimetype になります。 L11: 設定で指定するフィールドは変更することができます。 L12: </dd> L13: <dt>ソート</dt> L14: <dd> L15: sort 演算子は指定したフィールド名でドキュメントをソートします。 L16: sort 演算子の利用方法は sort:&lt;field&gt;.&lt;order&gt; になります。 L17: &lt;order&gt; は asc または desc で昇順・降順を指定できます。 L18: たとえば、Fess を含むドキュメントでサイズの降順にソートしたい場合、次のように入力します。 L19: <pre>Fess sort:content_length.desc</pre> L20: 標準で利用可能なフィールドは created, content_length および last_modified になります。 L21:...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Mon Feb 26 14:01:31 UTC 2018
      3.4K bytes
  9. AbstractCatchingFuture.java

    AsyncCatchingFuture<V, X> future = new AsyncCatchingFuture<>(input, exceptionType, fallback); L63: input.addListener(future, rejectionPropagatingExecutor(executor, future)); L64: return future; L65: } L66: L67: /* L68: * In certain circumstances, this field might theoretically not be visible to an afterDone() call L69: * triggered by cancel(). For details, see the comments on the fields of TimeoutFuture. L70: */ L71: @CheckForNull @LazyInit ListenableFuture<? extends V> inputFuture; L72: @CheckForNull...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 25 13:13:32 UTC 2024
      9.1K bytes
  10. LittleEndianDataInputStream.java

    IOException { L220: return readUnsignedByte() != 0; L221: } L222: L223: /** L224: * Reads a byte from the input stream checking that the end of file (EOF) has not been L225: * encountered. L226: * L227: * @return byte read from input L228: * @throws IOException if an error is encountered while reading L229: * @throws EOFException if the end of file (EOF) is encountered. L230: */ L231: private byte readAndCheckByte() throws IOException, EOFException { L232: int b1 = in.read(); L233:...
    github.com/google/guava/android/guava/src/com/g...
    Wed May 17 14:35:11 UTC 2023
      7.3K bytes
Back to top