Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for 3600 (0.04 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. 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)
  3. 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)
  4. src/test/java/jcifs/netbios/NameServicePacketTest.java

            packet.recordName = new Name(mockConfig, "TEST_RECORD", 0, null);
            packet.recordType = NameServicePacket.A;
            packet.recordClass = NameServicePacket.IN;
            packet.ttl = 3600;
            packet.rDataLength = 6;
            // Create a dummy Name object for NbtAddress constructor
            Name dummyName = new Name(mockConfig, "DUMMY_NAME", 0, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/dfs/ReferralTest.java

            bb.putShort((short) 100);
            bb.putShort((short) 7);
            bb.putShort((short) 1); // rflags without name list flag
            bb.putShort((short) 20);
            bb.putShort((short) 3600);
            bb.putShort((short) 22);
            bb.putShort((short) 38);
            bb.putShort((short) 52);
    
            bb.position(22);
            bb.put("\\\\path".getBytes(StandardCharsets.UTF_16LE));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  6. 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)
  7. docs/recipes.md

    Response caching uses HTTP headers for all configuration. You can add request headers like `Cache-Control: max-stale=3600` and OkHttp's cache will honor them. Your webserver configures how long responses are cached with its own response headers, like `Cache-Control: max-age=9600`. There are cache headers to force a cached response, force a network response, or force the network response to be validated with a conditional GET.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

         * @return The state TTL in milliseconds.
         */
        protected long getStateTtl() {
            return Long.parseLong(ComponentUtil.getFessConfig().getSystemProperty(AZUREAD_STATE_TTL, "3600"));
        }
    
        /**
         * Gets the reply URL for Azure AD authentication.
         * @param request The HTTP servlet request.
         * @return The reply URL.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  9. pom.xml

    	<modelVersion>4.0.0</modelVersion>
    	<groupId>org.codelibs</groupId>
    	<artifactId>jcifs</artifactId>
    	<version>3.0.0-SNAPSHOT</version>
    	<packaging>jar</packaging>
    	<name>jCIFS</name>
    	<url>https://github.com/codelibs/jcifs</url>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                SMBUtil.writeInt8(testTime + 1000, buffer, offset + 16);
                SMBUtil.writeInt8(testTime + 2000, buffer, offset + 24);
                SMBUtil.writeInt8(testTime + 3000, buffer, offset + 32);
                SMBUtil.writeInt8(8192, buffer, offset + 40);
                SMBUtil.writeInt8(2048, buffer, offset + 48);
                SMBUtil.writeInt4(0x10, buffer, offset + 56);
    
                // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top