- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 1,165 for key5 (3.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
*/ @Nullable Path getPath(@Nonnull Artifact artifact); /** * Returns a mapping of artifact coordinates to their corresponding resolution results. * * @return A {@link Map} where keys are {@link ArtifactCoordinates} and values are {@link ResultItem} instances. */ @Nonnull Map<? extends ArtifactCoordinates, ResultItem> getResults(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/streaming-signature-v4.go
} return errMalformedEncoding } key := line[:idx] value := line[idx+1:] if _, ok := wantTrailers[key]; !ok { if cr.debug { fmt.Printf("%q not found in %q\n", key, cr.trailers) } return errMalformedEncoding } cr.trailers.Set(key, value) delete(wantTrailers, key) } // Check if we got all we want. if len(wantTrailers) > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 18.2K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
public static final int DIRECTORY_LEASE_FLAG_NOTIFICATIONS = 0x00000002; public DirectoryLeaseContext(Smb2LeaseKey key, int leaseState, DirectoryCacheScope scope) { super(); setLeaseKey(key); setLeaseState(leaseState); this.cacheScope = scope; this.maxCacheAge = 30000; // 30 seconds default this.notificationEnabled = true; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
/** Configuration key for OpenID Connect redirect URL. */ protected static final String OIC_REDIRECT_URL = "oic.redirect.url"; /** Configuration key for OpenID Connect token server URL. */ protected static final String OIC_TOKEN_SERVER_URL = "oic.token.server.url"; /** Configuration key for OpenID Connect client secret. */ protected static final String OIC_CLIENT_SECRET = "oic.client.secret";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
cmd/sftp-server-driver.go
Recursive: false, }) { if object.Err != nil { return nil, object.Err } if object.Key == prefix { continue } isDir := strings.HasSuffix(object.Key, SlashSeparator) files = append(files, &minioFileInfo{ p: pathClean(strings.TrimPrefix(object.Key, prefix)), info: object, isDir: isDir, }) } return listerAt(files), nil
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 10 16:35:49 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
* @param key The condition key. * @param regex The regex pattern for the condition. */ public void addCondition(final String key, final String regex) { final String value = conditionMap.get(key); if (StringUtil.isBlank(value)) { conditionMap.put(key, regex); } else { conditionMap.put(key, value + "|" + regex); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfoParam.java
} @Override public String toString() { return "CrawlingInfoParam [crawlingInfo=" + crawlingInfo + ", crawlingInfoId=" + crawlingInfoId + ", createdTime=" + createdTime + ", key=" + key + ", value=" + value + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
docs/bucket/replication/sio-error.sh
./mc ready myminio1 ./mc ready myminio2 sleep 1 ./mc mb myminio1/testbucket/ --with-lock ./mc mb myminio2/testbucket/ --with-lock ./mc encrypt set sse-s3 my-minio-key myminio1/testbucket/ ./mc encrypt set sse-s3 my-minio-key myminio2/testbucket/ ./mc replicate add myminio1/testbucket --remote-bucket http://minioadmin:minioadmin@localhost:9101/testbucket --priority 1
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 1.7K bytes - Viewed (0) -
cmd/object-api-listobjects_test.go
if err != nil { b.Fatal(err) } // Insert objects to be listed and benchmarked later. for i := range 20000 { key := "obj" + strconv.Itoa(i) _, err = obj.PutObject(b.Context(), bucket, key, mustGetPutObjReader(b, bytes.NewBufferString(key), int64(len(key)), "", ""), ObjectOptions{}) if err != nil { b.Fatal(err) } } // List the buckets over and over and over.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 76.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
} // Happy path and edge: server encryption key can be non-null, empty, or null @Test @DisplayName("getServerEncryptionKey returns expected bytes") void serverEncryptionKey_variants() { byte[] key = new byte[] { 1, 2, 3 }; when(transport.getServerEncryptionKey()).thenReturn(key); assertArrayEquals(key, transport.getServerEncryptionKey());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0)