Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for 3600 (0.05 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

                public String getCookieDefaultPath() {
                    return "/test/path";
                }
    
                @Override
                public Integer getCookieDefaultExpireAsInteger() {
                    return 3600;
                }
    
                @Override
                public String getAppCipherAlgorism() {
                    return "AES";
                }
    
                @Override
                public String getAppCipherKey() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

                // Expected due to missing dependencies in test environment
                assertTrue(true);
            }
        }
    
        public void test_setMonitorInterval() {
            jobHelper.setMonitorInterval(3600);
            assertEquals(3600, jobHelper.monitorInterval);
    
            jobHelper.setMonitorInterval(1800);
            assertEquals(1800, jobHelper.monitorInterval);
        }
    
        public void test_getJobRuntime_null() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        // well, it didn't blow up.
      }
    
      public void testTimeToLive_setTwice() {
        CacheBuilder<Object, Object> builder =
            CacheBuilder.newBuilder().expireAfterWrite(3600, SECONDS);
        assertThrows(IllegalStateException.class, () -> builder.expireAfterWrite(3600, SECONDS));
      }
    
      @GwtIncompatible // Duration
      public void testTimeToLive_setTwice_duration() {
        CacheBuilder<Object, Object> builder =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        // well, it didn't blow up.
      }
    
      public void testTimeToLive_setTwice() {
        CacheBuilder<Object, Object> builder =
            CacheBuilder.newBuilder().expireAfterWrite(3600, SECONDS);
        assertThrows(IllegalStateException.class, () -> builder.expireAfterWrite(3600, SECONDS));
      }
    
      @GwtIncompatible // Duration
      public void testTimeToLive_setTwice_duration() {
        CacheBuilder<Object, Object> builder =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/ResourcesTest.java

              public List<String> getResult() {
                return collector;
              }
            };
        List<String> result = Resources.readLines(resource, US_ASCII, collectAndLowercaseAndTrim);
        assertEquals(3600, result.size());
        assertEquals("ALICE'S ADVENTURES IN WONDERLAND", result.get(0));
        assertEquals("THE END", result.get(result.size() - 1));
      }
    
      public void testCopyToOutputStream() throws IOException {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                }
            }, CrawlingInfoService.class.getCanonicalName());
    
            // Add info to map
            crawlingInfoHelper.putToInfoMap("status", "completed");
            crawlingInfoHelper.putToInfoMap("duration", "3600");
    
            // Store with create=false (use existing)
            crawlingInfoHelper.store(sessionId, false);
    
            // Verify infoMap is cleared
            assertNull(crawlingInfoHelper.infoMap);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            userInfoHelper.setResultDocIdsCacheSize(50);
            userInfoHelper.setCookieName("testCookie");
            userInfoHelper.setCookieDomain("example.com");
            userInfoHelper.setCookieMaxAge(3600);
            userInfoHelper.setCookiePath("/test");
            userInfoHelper.setCookieSecure(true);
            userInfoHelper.setCookieHttpOnly(false);
    
            assertTrue(true);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 3600 <br>
         * comment: Max age for CORS preflight requests.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getApiCorsMaxAge();
    
        /**
         * Get the value for the key 'api.cors.max.age' as {@link Integer}. <br>
         * The value is, e.g. 3600 <br>
         * comment: Max age for CORS preflight requests.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            @Override
            public String getCookieSearchParameterPath() {
                return "/";
            }
    
            @Override
            public Integer getCookieSearchParameterMaxAgeAsInteger() {
                return 3600;
            }
    
            @Override
            public String getCookieSearchParameterSameSite() {
                return "Lax";
            }
    
            @Override
            public boolean isSearchLog() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                        httpResponse.addHeader(ACCESS_CONTROL_ALLOW_HEADERS, "Content-Type");
                        httpResponse.addHeader(ACCESS_CONTROL_MAX_AGE, "3600");
                        httpResponse.addHeader(ACCESS_CONTROL_ALLOW_CREDENTIALS, "true");
                        httpResponse.addHeader(ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK, "true");
                    }
                }
            };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top