Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 709 for failed (0.04 sec)

  1. 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
  2. _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
  3. JdkBackedImmutableMap.java

    later entries with the same key should L50: // be deleted. L51: Map<K, @Nullable V> duplicates = null; L52: int dupCount = 0; L53: for (int i = 0; i < n; i++) { L54: // requireNonNull is safe because the first `n` elements have been filled in. L55: entryArray[i] = makeImmutable(requireNonNull(entryArray[i])); L56: K key = entryArray[i].getKey(); L57: V value = entryArray[i].getValue(); L58: V oldValue = delegateMap.put(key, value); L59: if (oldValue != null)...
    github.com/google/guava/guava/src/com/google/co...
    Thu Nov 30 21:54:06 UTC 2023
      4.8K bytes
  4. FeatureSpecificTestSuiteBuilder.java

    tearDown; L103: } L104: L105: // Features L106: L107: private final Set<Feature<?>> features = new LinkedHashSet<>(); L108: L109: /** L110: * Configures this builder to produce tests appropriate for the given features. This method may be L111: * called more than once to add features in multiple groups. L112: */ L113: @CanIgnoreReturnValue L114: public B withFeatures(Feature<?>... features) { L115: return withFeatures(asList(features)); L116: } L117: L118: @CanIgnoreReturnValue L119: public...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      10.4K bytes
  5. LICENSE

    L105: L106: (d) If the Work includes a "NOTICE" text file as part of its L107: distribution, then any Derivative Works that You distribute must L108: include a readable copy of the attribution notices contained L109: within such NOTICE file, excluding those notices that do not L110: pertain to any part of the Derivative Works, in at least one L111: of the following places: within a NOTICE text file distributed L112: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/third...
    Thu Oct 31 17:42:39 UTC 2024
      11.1K bytes
  6. LICENSE

    L107: L108: (d) If the Work includes a "NOTICE" text file as part of its L109: distribution, then any Derivative Works that You distribute must L110: include a readable copy of the attribution notices contained L111: within such NOTICE file, excluding those notices that do not L112: pertain to any part of the Derivative Works, in at least one L113: of the following places: within a NOTICE text file distributed L114: as part of the Derivative Works;...
    github.com/kubernetes/kubernetes/LICENSES/vendo...
    Fri May 08 04:49:00 UTC 2020
      11.2K bytes
  7. LICENSE.txt

    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/square/okhttp/LICENSE.txt
    Mon Jul 23 14:02:28 UTC 2012
      11.1K bytes
  8. UnicodeEscaper.java

    L57: L58: /** Constructor for use by subclasses. */ L59: protected UnicodeEscaper() {} L60: L61: /** L62: * Returns the escaped form of the given Unicode code point, or {@code null} if this code point L63: * does not need to be escaped. When called as part of an escaping operation, the given code point L64: * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}. L65: * L66: * <p>If an empty array is returned, this effectively strips the input character from the...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jan 18 20:55:09 UTC 2022
      13.2K bytes
  9. AbstractIteratorTest.java

    AbstractIterator<Integer>() { L169: boolean haveBeenCalled; L170: L171: @Override L172: public Integer computeNext() { L173: if (haveBeenCalled) { L174: throw new AssertionError("Should not have been called again"); L175: } else { L176: haveBeenCalled = true; L177: sneakyThrow(new SomeCheckedException()); L178: throw new AssertionError(); // unreachable L179: } L180: } L181: ...
    github.com/google/guava/android/guava-tests/tes...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
  10. AbstractIteratorTest.java

    AbstractIterator<Integer>() { L169: boolean haveBeenCalled; L170: L171: @Override L172: public Integer computeNext() { L173: if (haveBeenCalled) { L174: throw new AssertionError("Should not have been called again"); L175: } else { L176: haveBeenCalled = true; L177: sneakyThrow(new SomeCheckedException()); L178: throw new AssertionError(); // unreachable L179: } L180: } L181: ...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Oct 15 17:36:06 UTC 2024
      8.1K bytes
Back to top