Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for accesskey (0.36 sec)

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

     * evicted or manually invalidated. The common way to build instances is using {@link CacheBuilder}.
     *
     * <p>Implementations of this interface are expected to be thread-safe, and can be safely accessed
     * by multiple concurrent threads.
     *
     * @param <K> the type of the cache's keys, which are not permitted to be null
     * @param <V> the type of the cache's values, which are not permitted to be null
     * @author Charles Fry
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

      private var nextTcpConnectAtNanos = Long.MIN_VALUE
    
      /**
       * Plans currently being connected, and that will later be added to [connectResults]. This is
       * mutated by the call thread only. If is accessed by background connect threads.
       */
      private val tcpConnectsInFlight = CopyOnWriteArrayList<Plan>()
    
      /**
       * Results are posted here as they occur. The find job is done when either one plan completes
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

        }
    
        public void test_recordWithStatsAction() {
            String key = "test";
            crawlerStatsHelper.begin(key);
            crawlerStatsHelper.record(key, StatsAction.ACCESSED);
            crawlerStatsHelper.record(key, StatsAction.FINISHED);
            crawlerStatsHelper.done(key);
    
            String[] values = localLogMsg.get().split("\t");
            assertEquals(5, values.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt

            .Builder()
            .add("content-length", "99")
            .add("authorization", "peanutbutter")
            .add("proxy-authorization", "chocolate")
            .add("cookie", "drink=coffee")
            .add("set-cookie", "accessory=sugar")
            .add("user-agent", "OkHttp")
            .build()
        val request =
          Request(
            "https://square.com".toHttpUrl(),
            headers,
          )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

         *
         * @param service The service that failed.
         */
        public void failure(Service service) {}
      }
    
      /**
       * An encapsulation of all of the state that is accessed by the {@linkplain ServiceListener
       * service listeners}. This is extracted into its own object so that {@link ServiceListener} could
       * be made {@code static} and its instances can be safely constructed and added in the {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

         * during crawler operations. Each action represents a specific event
         * or milestone in the crawling process.
         */
        public enum StatsAction {
            /** Indicates that a URL was successfully accessed. */
            ACCESSED,
            /** Indicates that an exception occurred during URL access. */
            ACCESS_EXCEPTION,
            /** Indicates that a child URL was discovered. */
            CHILD_URL,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionBean.java

    import org.dbflute.cbean.scoping.UnionQuery;
    import org.dbflute.cbean.sqlclause.SqlClause;
    import org.dbflute.cbean.sqlclause.orderby.OrderByClause;
    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        /** Name of the thread that encountered the failure. */
        public String threadName;
    
        /** Number of errors encountered for this URL. */
        public String errorCount;
    
        /** Last time this URL was accessed. */
        public String lastAccessTime;
    
        /**
         * Clears all pager data and resets to default values.
         * This method resets pagination state and search filters.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

      }
    
      public static <E> Builder<E> builderWithExpectedSize(int size) {
        return new Builder<E>(size);
      }
    
      public static class Builder<E> extends ImmutableCollection.Builder<E> {
        // accessed directly by ImmutableSortedSet
        final ArrayList<E> contents;
    
        public Builder() {
          this.contents = Lists.newArrayList();
        }
    
        Builder(int initialCapacity) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

     *
     * <p>Duplicate hosts allow administrators to define hostname patterns that should
     * be treated as equivalent during crawling, helping to avoid duplicate content
     * from the same logical site accessed via different hostnames.</p>
     */
    public class DuplicateHostPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size for pagination. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top