Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for privasi (0.16 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
      private static final Logger aggregateFutureLogger =
          Logger.getLogger(AggregateFuture.class.getName());
      private final TestLogHandler aggregateFutureLogHandler = new TestLogHandler();
    
      private static final String DATA1 = "data";
      private static final String DATA2 = "more data";
      private static final String DATA3 = "most data";
    
      @Override
    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)
  2. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

            } else {
              lv = cv;
              l = c;
              c = l + (r - l) / 2;
              cv = prob[c];
            }
          }
        }
    
        private int sum = 69552218;
        private static int[] prob;
    
        private static void populateProb1() {
          prob = new int[10003];
          int[] temp =
              new int[] {
    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)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

    /**
     * The keys for message.
     * @author FreeGen
     */
    public class FessMessages extends FessLabels {
    
        /** The serial version UID for object serialization. (Default) */
        private static final long serialVersionUID = 1L;
    
        /** The key of the message:  */
        public static final String ERRORS_front_header = "{errors.front_header}";
    
        /** The key of the message:  */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    @GwtCompatible(emulated = true)
    public class FuturesTest extends TestCase {
      private static final Logger aggregateFutureLogger =
          Logger.getLogger(AggregateFuture.class.getName());
      private final TestLogHandler aggregateFutureLogHandler = new TestLogHandler();
    
      private static final String DATA1 = "data";
      private static final String DATA2 = "more data";
      private static final String DATA3 = "most data";
    
      @Override
    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)
  5. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        entry.setValueReference(valueRef);
        return entry;
      }
    
      static class DummyEntry<K, V> implements ReferenceEntry<K, V> {
        private @Nullable K key;
        private final int hash;
        private final ReferenceEntry<K, V> next;
    
        public DummyEntry(K key, int hash, ReferenceEntry<K, V> next) {
          this.key = key;
          this.hash = hash;
          this.next = next;
        }
    
    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)
  6. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        entry.setValueReference(valueRef);
        return entry;
      }
    
      static class DummyEntry<K, V> implements ReferenceEntry<K, V> {
        private @Nullable K key;
        private final int hash;
        private final ReferenceEntry<K, V> next;
    
        public DummyEntry(K key, int hash, ReferenceEntry<K, V> next) {
          this.key = key;
          this.hash = hash;
          this.next = next;
        }
    
    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)
  7. guava/src/com/google/common/cache/LocalCache.java

            builder.ticker(ticker);
          }
          return builder;
        }
    
        private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
          in.defaultReadObject();
          CacheBuilder<K, V> builder = recreateCacheBuilder();
          this.delegate = builder.build();
        }
    
        private Object readResolve() {
          return delegate;
        }
    
        @Override
    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)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

              @ParametricNullness V5 value5)
              throws Exception;
        }
    
        private final ClosingFuture<V1> future1;
        private final ClosingFuture<V2> future2;
        private final ClosingFuture<V3> future3;
        private final ClosingFuture<V4> future4;
        private final ClosingFuture<V5> future5;
    
        private Combiner5(
            ClosingFuture<V1> future1,
            ClosingFuture<V2> future2,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

          implements MapDifference.ValueDifference<V> {
        @ParametricNullness private final V left;
        @ParametricNullness private final V right;
    
        static <V extends @Nullable Object> ValueDifference<V> create(
            @ParametricNullness V left, @ParametricNullness V right) {
          return new ValueDifferenceImpl<>(left, right);
        }
    
        private ValueDifferenceImpl(@ParametricNullness V left, @ParametricNullness V right) {
    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)
  10. android/guava/src/com/google/common/cache/LocalCache.java

            builder.ticker(ticker);
          }
          return builder;
        }
    
        private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
          in.defaultReadObject();
          CacheBuilder<K, V> builder = recreateCacheBuilder();
          this.delegate = builder.build();
        }
    
        private Object readResolve() {
          return delegate;
        }
    
        @Override
    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)
Back to top