Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 717 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. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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
  8. LoadingCacheSingleThreadBenchmark.java

    cache; L50: L51: int max; L52: L53: static AtomicLong requests = new AtomicLong(0); L54: static AtomicLong misses = new AtomicLong(0); L55: L56: @BeforeExperiment L57: void setUp() { L58: // random integers will be generated in this range, then raised to the L59: // power of (1/concentration) and floor()ed L60: max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration)); L61: L62: cache = L63: CacheBuilder.newBuilder() L64: .concurrencyLevel(segments) L65: ...
    github.com/google/guava/guava-tests/benchmark/c...
    Mon Dec 04 17:37:03 UTC 2017
      3.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. _readme.txt

    (outside-sql-test): L56:A execution command of OutsideSqlTest task L57:which executes outside-SQL files and you can check L58:whether the SQLs have correct formats. L59: L60:The directories are for DBFlute tasks: L61:/- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L62:dfprop : Directory for DBFlute properties L63:extlib : Directory for Directory for library extension L64:log : Directory for log files of DBFlute tasks L65:output/doc : Directory for auto-generated documents L66:playsql...
    github.com/codelibs/fess/dbflute_fess/_readme.txt
    Sat Jul 04 22:46:31 UTC 2015
      2.5K bytes
Back to top