Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for GET (0.14 sec)

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

    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    she could not even get her head though the doorway; `and even if
    my head would go through,' thought poor Alice, `it would be of
    very little use without my shoulders.  Oh, how I wish
    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-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < size; i++) {
          ReferenceEntry<K, V> expectedEntry = expectedEntries.get(i);
          ReferenceEntry<K, V> actualEntry = actualEntries.get(i);
          assertSame(expectedEntry.getKey(), actualEntry.getKey());
          assertSame(expectedEntry.getValueReference().get(), actualEntry.getValueReference().get());
        }
      }
    
      static <K, V> void checkExpirationTimes(LocalCache<K, V> map) {
    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)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < size; i++) {
          ReferenceEntry<K, V> expectedEntry = expectedEntries.get(i);
          ReferenceEntry<K, V> actualEntry = actualEntries.get(i);
          assertSame(expectedEntry.getKey(), actualEntry.getKey());
          assertSame(expectedEntry.getValueReference().get(), actualEntry.getValueReference().get());
        }
      }
    
      static <K, V> void checkExpirationTimes(LocalCache<K, V> map) {
    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)
  4. guava/src/com/google/common/cache/LocalCache.java

      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        if (key == null) {
          return null;
        }
        int hash = hash(key);
        return segmentFor(hash).get(key, hash);
      }
    
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this
      V get(K key, CacheLoader<? super K, V> loader) throws ExecutionException {
    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)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              ListenableFuture<String> iFuture = inputs.allFutures.get(i).future;
              ListenableFuture<String> jFuture = inputs.allFutures.get(j).future;
              ListenableFuture<List<String>> future = merger.merged(iFuture, jFuture);
    
              // Test timed get before we've completed any delayed futures.
              try {
                List<String> result = future.get(0, MILLISECONDS);
    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

              ListenableFuture<String> iFuture = inputs.allFutures.get(i).future;
              ListenableFuture<String> jFuture = inputs.allFutures.get(j).future;
              ListenableFuture<List<String>> future = merger.merged(iFuture, jFuture);
    
              // Test timed get before we've completed any delayed futures.
              try {
                List<String> result = future.get(0, MILLISECONDS);
    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. android/guava/src/com/google/common/cache/LocalCache.java

      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
        if (key == null) {
          return null;
        }
        int hash = hash(key);
        return segmentFor(hash).get(key, hash);
      }
    
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this
      V get(K key, CacheLoader<? super K, V> loader) throws ExecutionException {
    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)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *     .transform((closer, result) -> result.get("userName"), directExecutor())
     *     .catching(DBException.class, e -> "no user", directExecutor())
     *     .finishToValueAndCloser(
     *         valueAndCloser -> this.userNameValueAndCloser = valueAndCloser, executor);
     *
     * // later
     * try { // get() will throw if the operation failed or was cancelled.
     *   UserName userName = userNameValueAndCloser.get();
     *   // do something with userName
    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-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    passage, not much larger than a rat-hole:  she knelt down and
    looked along the passage into the loveliest garden you ever saw.
    How she longed to get out of that dark hall, and wander about
    among those beds of bright flowers and those cool fountains, but
    she could not even get her head though the doorway; `and even if
    my head would go through,' thought poor Alice, `it would be of
    very little use without my shoulders.  Oh, how I wish
    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

          return Sets.hashCodeImpl(this);
        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
       * inverse view converts values using {@link BiMap#inverse bimap.inverse()}{@code .get()}.
       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
       * com.google.common.base.Functions#forMap(Map)} or {@link
    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