- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 145 for Region1 (0.14 sec)
-
src/test/java/jcifs/EncodableTest.java
// Assert: copied region equals the source slice. for (int i = 0; i < len; i++) { assertEquals(src[off + i], dst[dstIndex + i], "Byte mismatch at " + i); } // Assert: bytes before and after region remain unchanged. for (int i = 0; i < dstIndex; i++) { assertEquals((byte) 0x55, dst[i], "Unexpected change before copy region at " + i); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java
} /** * Get total number of memory regions allocated * * @return memory region count */ public long getMemoryRegionsAllocated() { return memoryRegionsAllocated.get(); } /** * Get number of currently active memory regions * * @return active memory region count */ public long getMemoryRegionsActive() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java
*/ public class SitemapAlternateLink implements Serializable { private static final long serialVersionUID = 1L; /** * The language/region code for this alternate link. * Should be in ISO 639-1 format (language) optionally followed by ISO 3166-1 Alpha 2 format (region). * For example: "en", "en-US", "de-CH", "x-default" */ private String hreflang; /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/S3StorageClient.java
* @param accessKey the AWS access key * @param secretKey the AWS secret key * @param bucket the bucket name * @param region the AWS region */ public S3StorageClient(final String endpoint, final String accessKey, final String secretKey, final String bucket, final String region) { this.bucket = bucket; final AwsBasicCredentials credentials = AwsBasicCredentials.create(accessKey, secretKey);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
} try { final software.amazon.awssdk.services.s3.S3ClientBuilder builder = S3Client.builder().endpointOverride(URI.create(endpoint)).region(Region.of(region)).forcePathStyle(true); if (StringUtil.isNotBlank(accessKey) && StringUtil.isNotBlank(secretKey)) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
docs/pt/llm-prompt.md
--- For the next terms, use the following translations: * «/// check»: «/// check | Verifique»
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
// Set credentials builder.credentialsProvider(StaticCredentialsProvider.create(AwsBasicCredentials.create(accessKey, secretKey))); // Set region builder.region(Region.of(region)); // Set path-style access (required for MinIO and other S3-compatible services) builder.forcePathStyle(true); awsS3Client = builder.build();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
cmd/config-current_test.go
if err = newTestConfig(globalMinioDefaultRegion, objLayer); err != nil { t.Fatalf("Init Test config failed") } if globalSite.Region() != globalMinioDefaultRegion { t.Errorf("Expecting region `us-east-1` found %s", globalSite.Region()) } // Set new region and verify. config.SetRegion(globalServerConfig, "us-west-1") site, err := config.LookupSite( globalServerConfig[config.SiteSubSys][config.Default],
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 1.9K bytes - Viewed (0) -
cmd/server-startup-msg.go
} return newAPIEndpoints } // Prints common server startup message. Prints credential, region and browser access. func printServerCommonMsg(apiEndpoints []string) { // Get saved credentials. cred := globalActiveCred // Get saved region. region := globalSite.Region() apiEndpointStr := strings.TrimSpace(strings.Join(apiEndpoints, " ")) // Colorize the message and print.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/signature-v4.go
// returns ErrNone if the signature matches. func doesPolicySignatureV4Match(formValues http.Header) (auth.Credentials, APIErrorCode) { // Server region. region := globalSite.Region() // Parse credential tag. credHeader, s3Err := parseCredentialHeader("Credential="+formValues.Get(xhttp.AmzCredential), region, serviceS3) if s3Err != ErrNone { return auth.Credentials{}, s3Err } r := &http.Request{Header: formValues}
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Dec 13 22:19:12 UTC 2024 - 12.4K bytes - Viewed (0)