- Sort Score
- Result 10 results
- Languages All
Results 721 - 730 of 762 for PARAMETERS (0.13 sec)
-
configure.py
# See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """configure script to get build parameters from user.""" import argparse import errno import json import os import platform import re import shutil import subprocess import sys _DEFAULT_CUDA_COMPUTE_CAPABILITIES = '3.5,7.0'
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- Deprecated the `--cloud-provider` and `--cloud-config` CLI parameters in kube-apiserver. These parameters will be removed in a future release. ([#120903](https://github.com/kubernetes/kubernetes/pull/120903), [@dims](https://github.com/dims)) [SIG API Machinery]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 04:37:31 UTC 2024 - 375.1K bytes - Viewed (1) -
cmd/data-scanner.go
if d.isScanner { globalScannerMetrics.incTime(scannerMetricYield, wantSleep) } return } } } } // Update the current settings and cycle all waiting. // Parameters are the same as in the constructor. func (d *dynamicSleeper) Update(factor float64, maxWait time.Duration) error { d.mu.Lock() defer d.mu.Unlock() if math.Abs(d.factor-factor) < 1e-10 && d.maxSleep == maxWait {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 21:10:34 UTC 2024 - 48.4K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
return "", false } params := name.FuncType.Params args := call.Call.Args end := call.Call.End() // Avoid a crash if the number of arguments doesn't match // the number of parameters. // This will be caught when the generated file is compiled. if len(args) != len(params) { return "", false } any := false for i, param := range params {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
## Urgent Upgrade Notes ### (No, really, you MUST read this before you upgrade) - ACTION REQUIRED for custom scheduler plugin developers: `PodEligibleToPreemptOthers` in the `preemption` interface gets `ctx` in the parameters. Please change your plugins' implementation accordingly. ([#126465](https://github.com/kubernetes/kubernetes/pull/126465), [@googs1025](https://github.com/googs1025)) [SIG Scheduling]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Oct 29 20:17:52 UTC 2024 - 121.6K bytes - Viewed (0) -
common/scripts/metallb-native.yaml
type: string name: v1beta1 schema: openAPIV3Schema: description: BGPAdvertisement allows to advertise the IPs coming from the selected IPAddressPools via BGP, setting the parameters of the BGP Advertisement. properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Feb 23 23:56:31 UTC 2024 - 63.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
* Liveness and readiness probes now support more configuration parameters: periodSeconds, successThreshold, failureThreshold * The new ReplicaSet API (Beta) in the Extensions API group is similar to
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
* [fluentd-gcp addon] Bump prometheus-to-sd to v0.5.0 to pick up security fixes. * [metatada-proxy addon] Bump prometheus-to-sd v0.5.0 to pick up security fixes. * Fixed parsing of fsType in AWS StorageClass parameters ([#75944](https://github.com/kubernetes/kubernetes/pull/75944), [@jsafrane](https://github.com/jsafrane))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
common-protos/k8s.io/api/extensions/v1beta1/generated.proto
// +patchStrategy=merge repeated DaemonSetCondition conditions = 10; } // DaemonSetUpdateStrategy indicates the strategy that the DaemonSet // controller will use to perform updates. It includes any additional parameters // necessary to perform the update for the indicated strategy. message DaemonSetUpdateStrategy { // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". // Default is OnDelete. // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 45.6K bytes - Viewed (0) -
tensorflow/c/c_api.h
// API for driving Graph execution. typedef struct TF_Session TF_Session; // Return a new execution session with the associated graph, or NULL on // error. Does not take ownership of any input parameters. // // *`graph` must be a valid graph (not deleted or nullptr). `graph` will be // kept alive for the lifetime of the returned TF_Session. New nodes can still // be added to `graph` after this call.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0)