- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for site (0.03 sec)
-
cmd/api-errors.go
Code: "XMinioSiteReplicationConfigMissingError", Description: "Site not found in site replication configuration", HTTPStatusCode: http.StatusBadRequest, }, ErrSiteReplicationIAMConfigMismatch: { Code: "XMinioSiteReplicationIAMConfigMismatch", Description: "IAM configuration mismatch between sites", HTTPStatusCode: http.StatusBadRequest, }, ErrAdminRebalanceAlreadyStarted: {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
cmd/bucket-handlers.go
writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrAccessDenied, err), r.URL) return } // Ensure that the object size is within expected range, also the file size // should not exceed the maximum single Put size (5 GiB) lengthRange := postPolicyForm.Conditions.ContentLengthRange if lengthRange.Valid { hashReader.SetExpectedMin(lengthRange.Min)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
cmd/peer-rest-server.go
u, ok := globalIAMSys.GetUser(r.Context(), r.Form.Get(peerRESTAccessKey)) if !ok { s.writeErrorResponse(w, errAuthentication) return } size, err := strconv.Atoi(sizeStr) if err != nil { size = 64 * humanize.MiByte } concurrent, err := strconv.Atoi(concurrentStr) if err != nil { concurrent = 32 } duration, err := time.ParseDuration(durationStr)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
cmd/admin-handlers-users.go
for _, bucket := range buckets { rd, wr := isAllowedAccess(bucket.Name) if rd || wr { // Fetch the data usage of the current bucket bui := globalBucketQuotaSys.GetBucketUsageInfo(ctx, bucket.Name) size := bui.Size objectsCount := bui.ObjectsCount objectsHist := bui.ObjectSizesHistogram versionsHist := bui.ObjectVersionsHistogram // Fetch the prefix usage of the current bucket
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0) -
pom.xml
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* Fix: Use the correct key size in the name of `TLS_AES_128_CCM_8_SHA256` which is a TLS 1.3 cipher suite. We accidentally specified a key size of 256, preventing that cipher suite from being selected for any TLS handshakes. We didn't notice because this cipher suite isn't supported on Android, Java, or Conscrypt. We removed this cipher suite and `TLS_AES_128_CCM_SHA256` from the restricted, modern, and
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
cmd/iam.go
accessKey string secretKey string name, description string expiration *time.Time allowSiteReplicatorAccount bool // allow creating internal service account for site-replication. claims map[string]interface{} } // NewServiceAccount - create a new service account
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
cmd/iam-store.go
func extractJWTClaims(u UserIdentity) (jwtClaims *jwt.MapClaims, err error) { keys := make([]string, 0, 3) // Append credentials secret key itself keys = append(keys, u.Credentials.SecretKey) // Use site-replication credentials if found if globalSiteReplicationSys.isEnabled() { secretKey, err := getTokenSigningKey() if err != nil { return nil, err } keys = append(keys, secretKey) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/erasure-server-pool.go
p[i].Available = 0 } } // getAvailablePoolIdx will return an index that can hold size bytes. // -1 is returned if no serverPools have available space for the size given. func (z *erasureServerPools) getAvailablePoolIdx(ctx context.Context, bucket, object string, size int64) int { serverPools := z.getServerPoolsAvailableSpace(ctx, bucket, object, size) serverPools.FilterMaxUsed(100 - (100 * diskReserveFraction))
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 89.8K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
requires-port "^1.0.0" iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" iconv-lite@^0.6.3: version "0.6.3"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0)