Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for store3 (0.15 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

        for (Entry<K, V> entry : result.entrySet()) {
          K key = entry.getKey();
          V value = entry.getValue();
          if (key == null || value == null) {
            // delay failure until non-null entries are stored
            nullsPresent = true;
          } else {
            put(key, value);
          }
        }
    
        if (nullsPresent) {
          globalStatsCounter.recordLoadException(stopwatch.elapsed(NANOSECONDS));
    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)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawling/Displaying */
        public static final String LABELS_pathmap_pt_both = "{labels.pathmap_pt_both}";
    
        /** The key of the message: Stored URLs */
        public static final String LABELS_pathmap_pt_stored = "{labels.pathmap_pt_stored}";
    
        /** The key of the message: Regular Name */
        public static final String LABELS_regular_name = "{labels.regular_name}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        for (Entry<K, V> entry : result.entrySet()) {
          K key = entry.getKey();
          V value = entry.getValue();
          if (key == null || value == null) {
            // delay failure until non-null entries are stored
            nullsPresent = true;
          } else {
            put(key, value);
          }
        }
    
        if (nullsPresent) {
          globalStatsCounter.recordLoadException(stopwatch.elapsed(NANOSECONDS));
    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)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      /**
       * Marks this step as the last step in the {@code ClosingFuture} pipeline. When this step is done,
       * {@code receiver} will be called with an object that contains the result of the operation. The
       * receiver can store the {@link ValueAndCloser} outside the receiver for later synchronous use.
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, this method again, or
    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)
Back to top