Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 717 for failed (0.04 sec)

  1. HashBiMap.java

    lastInInsertionOrder = ENDPOINT; L135: L136: prevInInsertionOrder = createFilledWithAbsent(expectedSize); L137: nextInInsertionOrder = createFilledWithAbsent(expectedSize); L138: } L139: L140: /** Returns an int array of the specified size, filled with ABSENT. */ L141: private static int[] createFilledWithAbsent(int size) { L142: int[] array = new int[size]; L143: Arrays.fill(array, ABSENT); L144: return array; L145: } L146: L147: /** Equivalent to {@code Arrays.copyOf(array, newSize)},...
    github.com/google/guava/android/guava/src/com/g...
    Mon Mar 06 16:06:58 UTC 2023
      36.4K bytes
  2. DescendingImmutableSortedSet.java

    UnmodifiableIterator<E> descendingIterator() { L78: return forward.iterator(); L79: } L80: L81: @Override L82: @GwtIncompatible("NavigableSet") L83: ImmutableSortedSet<E> createDescendingSet() { L84: throw new AssertionError("should never be called"); L85: } L86: L87: @Override L88: @CheckForNull L89: public E lower(E element) { L90: return forward.higher(element); L91: } L92: L93: @Override L94: @CheckForNull L95: public E floor(E element) { L96: return forward.ceiling(element);...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      3.3K bytes
  3. RegularImmutableBiMap.java

    L74: @Nullable ImmutableMapEntry<K, V>[] keyTable = createEntryArray(tableSize); L75: @Nullable ImmutableMapEntry<K, V>[] valueTable = createEntryArray(tableSize); L76: /* L77: * The cast is safe: n==entryArray.length means that we have filled the whole array with Entry L78: * instances, in which case it is safe to cast it from an array of nullable entries to an array L79: * of non-null entries. L80: */ L81: @SuppressWarnings("nullness") L82: Entry<K, V>[] entries = L83:...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 19 00:05:46 UTC 2024
      11.3K bytes
  4. HashFunction.java

    java.nio.ByteBuffer; L20:import java.nio.charset.Charset; L21:import org.checkerframework.checker.nullness.qual.Nullable; L22: L23:/** L24: * A hash function is a collision-averse pure function that maps an arbitrary block of data to a L25: * number called a <i>hash code</i>. L26: * L27: * <h3>Definition</h3> L28: * L29: * <p>Unpacking this definition: L30: * L31: * <ul> L32: * <li><b>block of data:</b> the input for a hash function is always, in concept, an ordered byte L33: * array. This hashing...
    github.com/google/guava/android/guava/src/com/g...
    Tue May 25 18:22:59 UTC 2021
      10.9K bytes
  5. HashFunction.java

    java.nio.ByteBuffer; L20:import java.nio.charset.Charset; L21:import org.checkerframework.checker.nullness.qual.Nullable; L22: L23:/** L24: * A hash function is a collision-averse pure function that maps an arbitrary block of data to a L25: * number called a <i>hash code</i>. L26: * L27: * <h3>Definition</h3> L28: * L29: * <p>Unpacking this definition: L30: * L31: * <ul> L32: * <li><b>block of data:</b> the input for a hash function is always, in concept, an ordered byte L33: * array. This hashing...
    github.com/google/guava/guava/src/com/google/co...
    Tue May 25 18:22:59 UTC 2021
      10.9K bytes
  6. RemovalListener.java

    removal L21: * resulting in notification could have occurred to an entry being manually removed or replaced, or L22: * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection. L23: * L24: * <p>An instance may be called concurrently by multiple threads to process different entries. L25: * Implementations of this interface should avoid performing blocking calls or synchronizing on L26: * shared resources. L27: * L28: * @param <K> the most general type of keys this...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jun 15 18:00:07 UTC 2021
      2K bytes
  7. CHANGELOG.md

    consistent with major web browsers. L397: * Fix: Don't crash if Conscrypt returns a null version. L398: * Fix: Include the public suffix data as a resource in GraalVM native images. L399: * Fix: Fail fast when the cache is corrupted. L400: * Fix: Fail fast when a private key cannot be encoded. L401: * Fix: Fail fast when attempting to verify a non-ASCII hostname. L402: * Upgrade: [GraalVM 21][graalvm_21]. L403: * Upgrade: [Kotlin 1.4.20][kotlin_1_4_20]. L404: L405: L406:## Version 5.0.0-alpha.1 L407:...
    github.com/square/okhttp/CHANGELOG.md
    Thu Apr 18 01:31:39 UTC 2024
      21.4K bytes
  8. RemovalListener.java

    removal L21: * resulting in notification could have occurred to an entry being manually removed or replaced, or L22: * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection. L23: * L24: * <p>An instance may be called concurrently by multiple threads to process different entries. L25: * Implementations of this interface should avoid performing blocking calls or synchronizing on L26: * shared resources. L27: * L28: * @param <K> the most general type of keys this...
    github.com/google/guava/guava/src/com/google/co...
    Tue Jun 15 18:00:07 UTC 2021
      2K bytes
  9. BsScheduledJob.java

    null) { L137: addFieldToSource(sourceMap, "updatedTime", updatedTime); L138: } L139: return sourceMap; L140: } L141: L142: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L143: sourceMap.put(field, value); L144: } L145: L146: // =================================================================================== L147: // Basic Override L148:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.3K bytes
  10. HashingOutputStream.java

    IOException { L58: hasher.putBytes(bytes, off, len); L59: out.write(bytes, off, len); L60: } L61: L62: /** L63: * Returns the {@link HashCode} based on the data written to this stream. The result is L64: * unspecified if this method is called more than once on the same instance. L65: */ L66: public HashCode hash() { L67: return hasher.hash(); L68: } L69: L70: // Overriding close() because FilterOutputStream's close() method pre-JDK8 has bad behavior: L71: // it silently ignores...
    github.com/google/guava/android/guava/src/com/g...
    Fri Oct 11 22:00:03 UTC 2024
      2.6K bytes
Back to top