Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for skipped (0.26 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Started job {0}. */
        public static final String SUCCESS_job_started = "{success.job_started}";
    
        /** The key of the message: Stopped job {0}. */
        public static final String SUCCESS_job_stopped = "{success.job_stopped}";
    
        /** The key of the message: Uploaded Synonym file. */
        public static final String SUCCESS_upload_synonym_file = "{success.upload_synonym_file}";
    
    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)
  2. guava/src/com/google/common/cache/LocalCache.java

                return true;
              }
            }
          }
          return false;
        }
    
        /**
         * Advances to the given entry. Returns true if the entry was valid, false if it should be
         * skipped.
         */
        boolean advanceTo(ReferenceEntry<K, V> entry) {
          try {
            long now = ticker.read();
            K key = entry.getKey();
            V value = getLiveValue(entry, now);
    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. android/guava/src/com/google/common/cache/LocalCache.java

                return true;
              }
            }
          }
          return false;
        }
    
        /**
         * Advances to the given entry. Returns true if the entry was valid, false if it should be
         * skipped.
         */
        boolean advanceTo(ReferenceEntry<K, V> entry) {
          try {
            long now = ticker.read();
            K key = entry.getKey();
            V value = getLiveValue(entry, now);
    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