Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for FOR (0.15 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      And so it was indeed:  she was now only ten inches high, and
    her face brightened up at the thought that she was now the right
    size for going through the little door into that lovely garden.
    First, however, she waited for a few minutes to see if she was
    going to shrink any further:  she felt a little nervous about
    this; `for it might end, you know,' said Alice to herself, `in my
    going out altogether, like a candle.  I wonder what I should be
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

      /** The concurrency level. */
      final int concurrencyLevel;
    
      /** Strategy for comparing keys. */
      final Equivalence<Object> keyEquivalence;
    
      /** Strategy for comparing values. */
      final Equivalence<Object> valueEquivalence;
    
      /** Strategy for referencing keys. */
      final Strength keyStrength;
    
      /** Strategy for referencing values. */
      final Strength valueStrength;
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      private static <K, V> int countLiveEntries(LocalCache<K, V> map, long now) {
        int result = 0;
        for (Segment<K, V> segment : map.segments) {
          AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
          for (int i = 0; i < table.length(); i++) {
            for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
              if (map.isLive(e, now)) {
                result++;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        }
      }
    
      private static <K, V> int countLiveEntries(LocalCache<K, V> map, long now) {
        int result = 0;
        for (Segment<K, V> segment : map.segments) {
          AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
          for (int i = 0; i < table.length(); i++) {
            for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
              if (map.isLive(e, now)) {
                result++;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static void runExtensiveMergerTest(Merger merger) throws InterruptedException {
        int inputCount = new TestFutureBatch().allFutures.size();
    
        for (int i = 0; i < inputCount; i++) {
          for (int j = 0; j < inputCount; j++) {
            for (boolean iBeforeJ : new boolean[] {true, false}) {
              TestFutureBatch inputs = new TestFutureBatch();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static void runExtensiveMergerTest(Merger merger) throws InterruptedException {
        int inputCount = new TestFutureBatch().allFutures.size();
    
        for (int i = 0; i < inputCount; i++) {
          for (int j = 0; j < inputCount; j++) {
            for (boolean iBeforeJ : new boolean[] {true, false}) {
              TestFutureBatch inputs = new TestFutureBatch();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

      @Benchmark
      int trimAndCollapseFromString(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += matcher.trimAndCollapseFrom(string, '!').length();
        }
        return dummy;
      }
    
      @Benchmark
      int matches(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy += matcher.matches(string.charAt(i % string.length())) ? 1 : 0;
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

      /** The concurrency level. */
      final int concurrencyLevel;
    
      /** Strategy for comparing keys. */
      final Equivalence<Object> keyEquivalence;
    
      /** Strategy for comparing values. */
      final Equivalence<Object> valueEquivalence;
    
      /** Strategy for referencing keys. */
      final Strength keyStrength;
    
      /** Strategy for referencing values. */
      final Strength valueStrength;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      And so it was indeed:  she was now only ten inches high, and
    her face brightened up at the thought that she was now the right
    size for going through the little door into that lovely garden.
    First, however, she waited for a few minutes to see if she was
    going to shrink any further:  she felt a little nervous about
    this; `for it might end, you know,' said Alice to herself, `in my
    going out altogether, like a candle.  I wonder what I should be
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned map
       * to be a view, but it means that the function will be applied many times for bulk operations
       * like {@link Map#containsValue} and {@code Map.toString()}. For this to perform well, {@code
       * function} should be fast. To avoid lazy evaluation when the returned map doesn't need to be a
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top