Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for 60 (0.08 sec)

  1. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

            // Install
            {
                checkPostMethod(targetMap, getInstallEndpointSuffix()).then().body("response.status", equalTo(0));
    
                boolean done = false;
                for (int i = 0; i < 60; i++) {
                    final List<Map<String, Object>> installed =
                            checkGetMethod(Collections.emptyMap(), getInstalledEndpointSuffix() + "/").body()
                                    .jsonPath()
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt

        assertThat(pool.closeConnections(50L)).isEqualTo(100L)
        assertThat(pool.connectionCount()).isEqualTo(1)
        assertThat(c1.socket().isClosed).isFalse()
    
        // Running at time 60, the pool returns that nothing can be evicted until time 150.
        assertThat(pool.closeConnections(60L)).isEqualTo(90L)
        assertThat(pool.connectionCount()).isEqualTo(1)
        assertThat(c1.socket().isClosed).isFalse()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

                FessConfig mockConfig = new FessConfig.SimpleImpl() {
                    @Override
                    public Integer getThumbnailSystemMonitorIntervalAsInteger() {
                        return 60;
                    }
                };
                ComponentUtil.register(mockConfig, "fessConfig");
    
                // Register mock ThumbnailManager
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt

        assertThat(formEncode(48)).isEqualTo("0")
        assertThat(formEncode(57)).isEqualTo("9")
        assertThat(formEncode(58)).isEqualTo("%3A")
        assertThat(formEncode(59)).isEqualTo("%3B")
        assertThat(formEncode(60)).isEqualTo("%3C")
        assertThat(formEncode(61)).isEqualTo("%3D")
        assertThat(formEncode(62)).isEqualTo("%3E")
        assertThat(formEncode(63)).isEqualTo("%3F")
        assertThat(formEncode(64)).isEqualTo("%40")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - go.opencensus.io: v0.23.0 → v0.24.0
    - go.uber.org/atomic: v1.7.0 → v1.10.0
    - go.uber.org/multierr: v1.6.0 → v1.11.0
    - golang.org/x/crypto: v0.1.0 → v0.6.0
    - golang.org/x/mod: v0.9.0 → v0.10.0
    - golang.org/x/net: v0.8.0 → v0.9.0
    - golang.org/x/oauth2: ee48083 → v0.6.0
    - golang.org/x/sys: v0.6.0 → v0.7.0
    - golang.org/x/term: v0.6.0 → v0.7.0
    - golang.org/x/text: v0.8.0 → v0.9.0
    - golang.org/x/time: 90d013b → v0.3.0
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 60 */
        String SUGGEST_POPULAR_WORD_CACHE_EXPIRE = "suggest.popular.word.cache.expire";
    
        /** The key of the configuration. e.g. {user}guest,{role}guest */
        String SUGGEST_SEARCH_LOG_PERMISSIONS = "suggest.search.log.permissions";
    
        /** The key of the configuration. e.g. 60 */
        String SUGGEST_SYSTEM_MONITOR_INTERVAL = "suggest.system.monitor.interval";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  7. samples/guide/src/main/java/okhttp3/recipes/RewriteResponseCacheControl.java

      private static final Interceptor REWRITE_CACHE_CONTROL_INTERCEPTOR = chain -> {
        Response originalResponse = chain.proceed(chain.request());
        return originalResponse.newBuilder()
            .header("Cache-Control", "max-age=60")
            .build();
      };
    
      private final OkHttpClient client;
    
      public RewriteResponseCacheControl(File cacheDirectory) throws Exception {
        Cache cache = new Cache(cacheDirectory, 1024 * 1024);
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/ForwardingExecutorServiceTest.java

      }
    
      public void testNoForwardingOfDefaultMethod() throws Exception {
        ExecutorService delegate =
            new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60, SECONDS, new SynchronousQueue<>()) {
              @Override
              public void close() {
                throw new AssertionError(
                    "ForwardingExecutorService should have used the default method"
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 18:45:52 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                    logger.debug("TimeoutManagerThread stopped.");
                }
                thread = null;
                try {
                    executorService.shutdown();
                    executorService.awaitTermination(60, TimeUnit.SECONDS);
                } catch (final InterruptedException e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Interrupted.", e);
                    }
                } finally {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp: v0.35.0 → v0.35.1
    - go.uber.org/goleak: v1.2.0 → v1.2.1
    - golang.org/x/mod: v0.6.0 → v0.9.0
    - golang.org/x/net: 1e63c2f → v0.8.0
    - golang.org/x/sync: 886fb93 → v0.1.0
    - golang.org/x/sys: v0.3.0 → v0.6.0
    - golang.org/x/term: v0.3.0 → v0.6.0
    - golang.org/x/text: v0.5.0 → v0.8.0
    - golang.org/x/tools: v0.2.0 → v0.7.0
    - golang.org/x/xerrors: 5ec99f8 → 04be3eb
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
Back to top