Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 709 for failed (0.05 sec)

  1. ImmutableSortedSet.java

    actually copying the data when it is L207: * safe to do so. The exact circumstances under which a copy will or will not be performed are L208: * undocumented and subject to change. L209: * L210: * <p>This method is not type-safe, as it may be called on elements that are not mutually L211: * comparable. L212: * L213: * @throws ClassCastException if the elements are not mutually comparable L214: * @throws NullPointerException if any of {@code elements} is null L215: */ L216: public static...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      39.1K bytes
  2. ConnectionListener.kt

    parameters, or be reentrant back into the client. L25: * Any IO - writing to files or network should be done asynchronously. L26: */ L27:@ExperimentalOkHttpApi L28:abstract class ConnectionListener { L29: /** L30: * Invoked as soon as a call causes a connection to be started. L31: */ L32: open fun connectStart( L33: route: Route, L34: call: Call, L35: ) {} L36: L37: /** L38: * Invoked when a connection fails to be established. L39: */ L40: open fun connectFailed( L41: route: Route,...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Tue Jan 23 14:31:42 UTC 2024
      2.2K bytes
  3. AbstractIndexedListIterator.java

    AbstractIndexedListIterator<E extends @Nullable Object> L36: extends UnmodifiableListIterator<E> { L37: private final int size; L38: private int position; L39: L40: /** Returns the element with the specified index. This method is called by {@link #next()}. */ L41: @ParametricNullness L42: protected abstract E get(int index); L43: L44: /** L45: * Constructs an iterator across a sequence of the given size whose initial position is 0. That L46: * is, the first call to {@link #next()} will...
    github.com/google/guava/android/guava/src/com/g...
    Fri Jul 09 17:31:04 UTC 2021
      3.2K bytes
  4. AbstractListenableFutureTest.java

    Executors.newCachedThreadPool(); L175: L176: int listenerCount = 20; L177: CountDownLatch listenerLatch = new CountDownLatch(listenerCount); L178: L179: // Test that listeners added both before and after the value is available L180: // get called correctly. L181: for (int i = 0; i < 20; i++) { L182: L183: // Right in the middle start up a thread to close the latch. L184: if (i == 10) { L185: new Thread(() -> latch.countDown()).start(); L186: } L187: L188: fut...
    github.com/google/guava/android/guava-testlib/s...
    Wed Sep 06 18:30:30 UTC 2023
      6K bytes
  5. FilteredKeyMultimap.java

    L172: } L173: L174: @Override L175: protected List<V> delegate() { L176: return emptyList(); L177: } L178: } L179: L180: @Override L181: Iterator<Entry<K, V>> entryIterator() { L182: throw new AssertionError("should never be called"); L183: } L184: L185: @Override L186: Collection<Entry<K, V>> createEntries() { L187: return new Entries(); L188: } L189: L190: @WeakOuter L191: class Entries extends ForwardingCollection<Entry<K, V>> { L192: @Override L193: protected...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      6.1K bytes
  6. package-info.java

    values} associated with a given key is a {@link java.util.SortedSet}. L51: * <dt>{@link BiMap} L52: * <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well L53: * as that of its keys. This is sometimes called an "invertible map," since the restriction on L54: * values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another L55: * instance of {@code BiMap}. L56: * <dt>{@link Table} L57: * <dd>A new type, which...
    github.com/google/guava/android/guava/src/com/g...
    Thu Jul 06 16:29:45 UTC 2023
      5K bytes
  7. package-info.java

    values} associated with a given key is a {@link java.util.SortedSet}. L51: * <dt>{@link BiMap} L52: * <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of its values as well L53: * as that of its keys. This is sometimes called an "invertible map," since the restriction on L54: * values enables it to support an {@linkplain BiMap#inverse inverse view} -- which is another L55: * instance of {@code BiMap}. L56: * <dt>{@link Table} L57: * <dd>A new type, which...
    github.com/google/guava/guava/src/com/google/co...
    Thu Jul 06 16:29:45 UTC 2023
      5K bytes
  8. no.js

    nok",badTelephone:"Du har ikke oppgitt et korrekt telefonnummer",badTime:"Du har ikke oppgitt en korrekt tid",badUrl:"Inntastingsverdien er ikke en korrekt URL",badreCaptcha:"Vennligst bekreft at du ikke er en robot",errorTitle:"Innsending av skjemaet feilet!",groupCheckedEnd:" ting",groupCheckedRangeStart:"Vennligst velg mellom ",groupCheckedTooFewStart:"Vennligst velg minst ",groupCheckedTooManyStart:"Vennligst velg maksimum ",imageRatioNotAccepted:"Bildestørrelse ikke akseptert",imageTooSmall:"bildet...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      2.4K bytes
  9. SubscriberTest.java

    Object.class); L102: } catch (NoSuchMethodException e) { L103: throw new AssertionError(); L104: } L105: } L106: L107: /** L108: * Records the provided object in {@link #methodArgument} and sets {@link #methodCalled}. This L109: * method is called reflectively by Subscriber during tests, and must remain public. L110: * L111: * @param arg argument to record. L112: */ L113: @Subscribe L114: public void recordingMethod(Object arg) { L115: assertFalse(methodCalled); L116: methodCalled...
    github.com/google/guava/android/guava-tests/tes...
    Wed Sep 06 17:04:31 UTC 2023
      4.8K bytes
  10. CollectionRemoveIfTester.java

    assertFalse( L87: "removeIf(Predicate) should return false or throw " + "UnsupportedOperationException", L88: collection.removeIf( L89: x -> { L90: throw new AssertionError("predicate should never be called"); L91: })); L92: } catch (UnsupportedOperationException tolerated) { L93: } L94: expectUnchanged(); L95: } L96: L97: @CollectionFeature.Require(absent = SUPPORTS_REMOVE) L98: @CollectionSize.Require(absent = ZERO) L99: public...
    github.com/google/guava/android/guava-testlib/s...
    Thu Oct 31 14:51:04 UTC 2024
      4.2K bytes
Back to top