- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 288 for minimum (0.18 sec)
-
cmd/dynamic-timeouts.go
dt := newDynamicTimeout(opts.timeout, opts.minimum) dt.retryInterval = opts.retryInterval return dt } // newDynamicTimeout returns a new dynamic timeout initialized with timeout value func newDynamicTimeout(timeout, minimum time.Duration) *dynamicTimeout { if timeout <= 0 || minimum <= 0 { panic("newDynamicTimeout: negative or zero timeout") } if minimum > timeout { minimum = timeout }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Aug 19 23:21:05 UTC 2022 - 4.5K bytes - Viewed (0) -
manifests/charts/base/files/crd-all.gen.yaml
description: Maximum number of keepalive probes to send without response before deciding the connection is dead. maximum: 4294967295 minimum: 0 type: integer
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 16:26:52 UTC 2024 - 804.4K bytes - Viewed (0) -
buildscripts/checkdeps.sh
#!/usr/bin/env bash # _init() { shopt -s extglob ## Minimum required versions for build dependencies GIT_VERSION="1.0" GO_VERSION="1.16" OSX_VERSION="10.8" KNAME=$(uname -s) ARCH=$(uname -m) case "${KNAME}" in SunOS) ARCH=$(isainfo -k) ;; esac } ## FIXME: ## In OSX, 'readlink -f' option does not exist, hence ## we have our own readlink -f behavior here.
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/minio-limits.md
| Maximum number of servers per cluster | no-limit | | Minimum number of servers | 02 | | Minimum number of drives per server when server count is 1 | 02 | | Minimum number of drives per server when server count is 2 or 3 | 01 |
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/sts/client-grants.md
| :-- | :-- | | *Type* | *String* | | *Length Constraints* | *Minimum length of 4. Maximum length of 2048.* | | *Required* | *Yes* | ### Version
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 7.2K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
schema: type: integer minimum: 0 exclusiveMinimum: false default: 10 example: 10 - name: facet.minDocCount in: query description: Minumum document size in facets required: false schema: type: integer minimum: 0 exclusiveMinimum: false default: 0
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
cmd/dynamic-timeouts_test.go
if to < time.Millisecond || to > time.Second { panic(to) } } }() } wg.Wait() } func TestDynamicTimeoutHitMinimum(t *testing.T) { const minimum = 30 * time.Second timeout := newDynamicTimeout(time.Minute, minimum) initial := timeout.Timeout() const successTimeout = 20 * time.Second for l := 0; l < 100; l++ { for i := 0; i < dynamicTimeoutLogSize; i++ {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Oct 14 10:08:40 UTC 2022 - 5.4K bytes - Viewed (0) -
istioctl/pkg/install/k8sversion/version.go
pkgVersion "istio.io/istio/pkg/version" ) const ( // MinK8SVersion is the minimum k8s version required to run this version of Istio // https://istio.io/docs/setup/platform-setup/ MinK8SVersion = 28 UnSupportedK8SVersionLogMsg = "\nThe Kubernetes version %s is not supported by Istio %s. The minimum supported Kubernetes version is 1.%d.\n" + "Proceeding with the installation, but you might experience problems. " +
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 2.6K bytes - Viewed (0) -
common/scripts/metallb-native.yaml
receiveInterval: description: The minimum interval that this system is capable of receiving control packets in milliseconds. Defaults to 300ms. format: int32 maximum: 60000 minimum: 10 type: integer transmitInterval: description: The minimum transmission interval (less jitter) that
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Fri Feb 23 23:56:31 UTC 2024 - 63.9K bytes - Viewed (0) -
istioctl/cmd/options_test.go
Registered: Wed Oct 30 22:53:10 UTC 2024 - Last Modified: Wed Sep 14 02:38:54 UTC 2022 - 1.9K bytes - Viewed (0)