- Sort Score
- Num 10 results
- Language All
Results 811 - 820 of 1,183 for key6 (0.03 seconds)
-
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
systemProperties.entrySet().stream().forEach(e -> { final String key = e.getKey().toString(); if (!key.startsWith(SAML_PREFIX)) { return; } params.put("onelogin.saml2." + key.substring(SAML_PREFIX.length()), e.getValue()); }); return new SettingsBuilder().fromValues(params).build(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java
protected int generateLocalKey() { // In real implementation, this would get the local key from DiSNI: // return memoryRegister.getLkey(); return keyGenerator.getAndIncrement(); } @Override protected int generateRemoteKey() { // In real implementation, this would get the remote key from DiSNI: // return memoryRegister.getRkey(); return keyGenerator.getAndIncrement();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* @throws SmbException if an error occurs checking signing status */ boolean isSigningEnforced() throws SmbException; /** * Gets the server's encryption key for authentication. * * @return the encryption key used by the server */ byte[] getServerEncryptionKey(); /** * Gets or creates an SMB session for the given context. * * @param ctx the CIFS contextCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
} @Test public void test_convertCrawlingPath_s3_with_special_characters() { // S3 paths with special characters in object keys assertEquals("s3://bucket/path/file%20with%20spaces.txt", wizardAction.convertCrawlingPath("s3://bucket/path/file%20with%20spaces.txt"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
} @Test public void test_maskSensitiveValue_nullHandling() { // When key is null, cannot determine if sensitive, so return value as-is assertEquals("value", SystemUtil.maskSensitiveValue(null, "value")); // When value is null, return null assertNull(SystemUtil.maskSensitiveValue("key", null)); assertNull(SystemUtil.maskSensitiveValue(null, null)); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 10.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
private var requestCount = 0 val isClosed: Boolean get() = cache.isClosed() internal fun get(request: Request): Response? { val key = key(request.url) val snapshot: DiskLruCache.Snapshot = try { cache[key] ?: return null } catch (_: IOException) { return null // Give up because the cache cannot be read. } val entry: Entry = try {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Mar 20 09:13:37 GMT 2026 - 26.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashSet.java
*/ private static final int MAX_HASH_BUCKET_LENGTH = 9; // See CompactHashMap for a detailed description of how the following fields work. That // description talks about `keys`, `values`, and `entries`; here the `keys` and `values` arrays // are replaced by a single `elements` array but everything else works similarly. /** * The hashtable object. This can be either: * * <ul>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 24.7K bytes - Click Count (0)