- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 193 for unses (5.6 sec)
-
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
InputStream in = new ByteArrayInputStream(concat(messageHeader(3), data)); SocketInputStream sis = new SocketInputStream(in); // Try to skip more than available // Skip uses read internally, which may throw IOException when it tries to read the next header try { long skipped = sis.skip(10); // If it doesn't throw, it should only skip what's available
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
default int getLtrWindowSize() { return getSystemPropertyAsInt(Constants.LTR_WINDOW_SIZE_PROPERTY, 100); } /** * Gets the permission fields for Entra ID authentication. * Uses new entraid.permission.fields key with fallback to legacy aad.permission.fields. * @return Array of permission field names. */ default String[] getEntraIdPermissionFields() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
delete(builder -> builder.setQuery(QueryBuilders.matchAllQuery())); } /** * Deletes documents from the OpenSearch index based on the specified search criteria. * Uses scroll and bulk delete operations for efficient deletion of large result sets. * * @param callback The callback to configure the search request for identifying documents to delete.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 34.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
assertEquals("IndependentPass123!", auth.getPassword()); } /** * Test secure wiping actually clears memory patterns */ @Test @DisplayName("Test secure wipe uses multiple overwrite patterns") public void testSecureWipePatterns() { NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "WipePatternPass123!"); // Get initial password
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
return ComponentUtil.getSystemProperties().getProperty(OIC_REDIRECT_URL, buildDefaultRedirectUrl()); } /** * Builds a default redirect URL for OpenID Connect based on the environment. * Uses the configured base URL or defaults to http://localhost:8080 for compatibility * with common OIDC provider configurations. * * @return the default redirect URL */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
metrics.put("rotationTimeLimit", keyRotationTimeLimit); return metrics; } /** * Generate a unique nonce for encryption following SMB3 specification. * Uses SMB3-compliant nonce generation with guaranteed uniqueness. * * @return nonce appropriate for the dialect (16 bytes for GCM, 12 bytes for CCM) */ public byte[] generateNonce() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java
} catch (CrawlingAccessException e) { assertTrue(e.getCause() instanceof InterruptedException); } } public void test_temp_file_creation() { // Test that temp file uses correct prefix "GcsClient" not "StorageClient" GcsClient client = new GcsClient() { @Override protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
* be the netbios name. So if we have the netbios server name * from the NTLMSSP type 2 message, and the share is IPC$, we * assert that the tree connect path uses the netbios hostname. */ tcax.path = "\\\\" + netbiosName + "\\IPC$"; } } request.uid = uid; request.auth = auth;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
} } /** * Handle a lease break with timeout * * @param key lease key * @param newState new lease state * @param timeoutSeconds timeout in seconds (0 or negative uses default) */ public void handleLeaseBreakWithTimeout(Smb2LeaseKey key, int newState, int timeoutSeconds) { // Use default timeout if not specified or invalid if (timeoutSeconds <= 0) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
} catch (CrawlingAccessException e) { assertTrue(e.getCause() instanceof InterruptedException); } } public void test_temp_file_creation() { // Test that temp file uses correct prefix "StorageClient" not "SmbClient" StorageClient client = new StorageClient() { @Override protected java.io.File createTempFile(String prefix, String suffix, java.io.File directory) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.9K bytes - Viewed (0)