- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for 3600 (0.04 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/resources/fess_config.properties
# Allowed origins for CORS. api.cors.allow.origin=* # Allowed HTTP methods for CORS. api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT # Max age for CORS preflight requests. api.cors.max.age=3600 # Allowed headers for CORS. api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With # Whether to allow credentials for CORS. api.cors.allow.credentials=true # Whether to enable JSONP for API.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
String value = ComponentUtil.getFessConfig().getSystemProperty(ENTRAID_STATE_TTL); if (StringUtil.isBlank(value)) { value = ComponentUtil.getFessConfig().getSystemProperty(AAD_STATE_TTL, "3600"); } return Long.parseLong(value); } /** * Gets the reply URL for Entra ID authentication. * Uses new entraid.reply.url key with fallback to legacy aad.reply.url.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
assertEquals("Stripping more than consumed", exception.getMessage()); } private void setupReferralDataWithPathConsumed(int consumed) { when(mockReferral.getTtl()).thenReturn(300); when(mockReferral.getRFlags()).thenReturn(0); when(mockReferral.getNode()).thenReturn("\\server\\share\\path"); String reqPath = "\\\\server\\share\\path\\file";
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
pom.xml
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
assertEquals(300, SMBUtil.readInt4(buffer, chunkStart + 16)); // Verify second chunk chunkStart += CHUNK_SIZE; assertEquals(400L, SMBUtil.readInt8(buffer, chunkStart)); assertEquals(500L, SMBUtil.readInt8(buffer, chunkStart + 8)); assertEquals(600, SMBUtil.readInt4(buffer, chunkStart + 16));
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java
@DisplayName("Should handle overflow correctly") void testConstructorOverflow() { // Given/When: Creating NdrShort with value > 255 NdrShort ndrShort = new NdrShort(300); // Then: Value should be masked (300 & 0xFF = 44) assertEquals(44, ndrShort.value); } } @Nested @DisplayName("Encoding Tests") class EncodingTests { @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* This message is shown to users on the authentication page. */ @Size(max = 3000) public String notificationLogin; /** * Notification message displayed on the search top page. * This message is shown to users on the main search page. */ @Size(max = 3000) public String notificationSearchTop; /** * System log level for controlling log verbosity.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0)