- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 1,789 for and (0.04 sec)
-
helm/minio/values.yaml
## clusterDomain: cluster.local ## Set default image, imageTag, and imagePullPolicy. mode is used to indicate the ## image: repository: quay.io/minio/minio tag: RELEASE.2024-04-18T19-09-19Z pullPolicy: IfNotPresent imagePullSecrets: [] # - name: "image-pull-secret" ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## client used to create a default bucket). ##
Registered: 2024-11-03 19:28 - Last Modified: 2024-10-10 15:48 - 18.8K bytes - Viewed (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
// in which case, ignore it. Otherwise, map and cache if (publicMethod != null) { methodMap.add(publicMethod); methodCache.put(makeMethodKey(publicMethod), publicMethod); } } } /** * Make a methodKey for the given method using * the concatenation of the name and the * types of the method parameters. */
Registered: 2024-11-03 03:35 - Last Modified: 2024-10-25 12:31 - 13.5K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
The Gradle codebase has evolved over time and has a mixture of simple getter/setter methods, Provider API and things in between. It can be hard to follow best practices because Gradle provided types are reused in unexpected ways and extended by third party plugins.
Registered: 2024-11-06 11:36 - Last Modified: 2024-10-15 20:00 - 10K bytes - Viewed (0) -
cmd/admin-heal-ops.go
if err := h.healDiskMeta(objAPI); err != nil { return err } } // Heal buckets and objects return h.healBuckets(objAPI) } // traverseAndHeal - traverses on-disk data and performs healing // according to settings. At each "safe" point it also checks if an // external quit signal has been received and quits if so. Since the // healing traversal may be mutating on-disk data when an external
Registered: 2024-11-03 19:28 - Last Modified: 2024-10-26 09:58 - 25.6K bytes - Viewed (0) -
cmd/metrics-v3-types.go
"golang.org/x/exp/slices" ) type collectorPath string // metricPrefix converts a collector path to a metric name prefix. The path is // converted to snake-case (by replaced '/' and '-' with '_') and prefixed with // `minio_`. func (cp collectorPath) metricPrefix() string { s := strings.TrimPrefix(string(cp), SlashSeparator) s = strings.ReplaceAll(s, SlashSeparator, "_") s = strings.ReplaceAll(s, "-", "_")
Registered: 2024-11-03 19:28 - Last Modified: 2024-07-30 22:28 - 15.6K bytes - Viewed (0) -
internal/kms/config.go
case kmsPresent && kesPresent: return false, errors.New("kms: configuration for MinIO KMS and MinIO KES is present") case kmsPresent && staticKeyPresent: return false, errors.New("kms: configuration for MinIO KMS and static KMS key is present") case kesPresent && staticKeyPresent: return false, errors.New("kms: configuration for MinIO KES and static KMS key is present") }
Registered: 2024-11-03 19:28 - Last Modified: 2024-08-15 11:46 - 14.2K bytes - Viewed (0) -
src/bytes/buffer.go
} // ReadBytes reads until the first occurrence of delim in the input, // returning a slice containing the data up to and including the delimiter. // If ReadBytes encounters an error before finding a delimiter, // it returns the data read before the error and the error itself (often [io.EOF]). // ReadBytes returns err != nil if and only if the returned data does not end in // delim. func (b *Buffer) ReadBytes(delim byte) (line []byte, err error) {
Registered: 2024-11-05 11:13 - Last Modified: 2024-10-29 16:47 - 15.7K bytes - Viewed (0) -
cmd/metrics-v3.go
// metrics required a list of buckets to be passed to the loader, and the list // of buckets is not known until the request is made. So we keep a separate // map for bucket metrics and handle them specially. // Add the serverName and poolIndex labels to all non-cluster metrics. // // Also create metric group maps and set the cache. metricsCache := newMetricsCache()
Registered: 2024-11-03 19:28 - Last Modified: 2024-08-02 00:55 - 13.6K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
// healthcheck port, just like we used to. Otherwise, we can't assume it's local-node privileged traffic, and will capture and process it normally. // // All this is necessary because quite often apps use the same port for healthchecks as they do for reg. traffic, and // we cannot make assumptions there.
Registered: 2024-11-06 22:53 - Last Modified: 2024-10-15 15:39 - 23.3K bytes - Viewed (0) -
src/archive/tar/reader.go
// This is wrong and leads to an output file that mangles the // atime and ctime fields, which are often left unused. // // In order to continue reading tar files created by former, buggy // versions of Go, we skeptically parse the atime and ctime fields. // If we are unable to parse them and the prefix field looks like
Registered: 2024-11-05 11:13 - Last Modified: 2024-03-08 01:59 - 26.8K bytes - Viewed (0)