Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 179 for unsat (0.05 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	CRISocket string
    
    	// Taints specifies the taints the Node API object should be registered with. If this field is unset, i.e. nil,
    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// selector is the string-encoded form of a standard kubernetes label selector for the given metric.
    	// When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping
    	// When unset, just the metricName will be used to gather metrics.
    	// +optional
    	Selector *metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,4,name=selector"`
    
    	// averageValue is the target value of the average of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	phase := obj.Status.Phase
    	if obj.ObjectMeta.DeletionTimestamp != nil {
    		phase = "Terminating"
    	}
    	volumeMode := "<unset>"
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	volumeAttributeClass := "<unset>"
    	if obj.Spec.VolumeAttributesClassName != nil {
    		volumeAttributeClass = *obj.Spec.VolumeAttributesClassName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. build/common.sh

    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    
    # Common utilities, variables and checks for all build scripts.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Unset CDPATH, having it set messes up with script import paths
    unset CDPATH
    
    USER_ID=$(id -u)
    GROUP_ID=$(id -g)
    
    DOCKER_OPTS=${DOCKER_OPTS:-""}
    IFS=" " read -r -a DOCKER <<< "docker ${DOCKER_OPTS}"
    DOCKER_HOST=${DOCKER_HOST:-""}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. cluster/gce/config-common.sh

    # Version for csi-proxy
    export CSI_PROXY_VERSION="${CSI_PROXY_VERSION:-v1.1.1-gke.0}"
    # csi-proxy additional flags, there are additional flags that cannot be unset in k8s-node-setup.psm1
    export CSI_PROXY_FLAGS="${CSI_PROXY_FLAGS:-}"
    # Storage path for auth-provider-gcp binaries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            if (GradleVersion.version(releasedGradleVersion) == GradleVersion.version("6.5.1")) {
                toolingApi.requireIsolatedUserHome()
            }
            // Having this unset is now deprecated, will default to `false` in Gradle 9.0
            // TODO remove - see https://github.com/gradle/gradle/issues/26810
            file('gradle.properties') << 'org.gradle.kotlin.dsl.skipMetadataVersionCheck=false'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProviderTest.groovy

            final static Attribute<Boolean> BOOLEAN_ATTRIBUTE = Attribute.of("bool", Boolean)
            final static Attribute<String> UNSET_ATTRIBUTE = Attribute.of("unset", String)
    
            @Override
            void execute(ComponentMetadataSupplierDetails details) {
                def builder = details.result
                builder.status = 'foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	CRISocket string `json:"criSocket,omitempty"`
    
    	// Taints specifies the taints the Node API object should be registered with. If this field is unset, i.e. nil,
    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    # Remove functions from the list of exported variables, they mess up with the `env` command.
    for f in $(declare -F -x | cut -d ' ' -f 3);
    do
      unset -f "${f}"
    done
    
    # Set conditional host mounts
    CONDITIONAL_HOST_MOUNTS="${CONDITIONAL_HOST_MOUNTS:-} "
    container_kubeconfig=''
    
    # docker conditional host mount (needed for make docker push)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	// MasterEndpointReconcileTTL sets the time to live in seconds of an
    	// endpoint record recorded by each master. The endpoints are checked at an
    	// interval that is 2/3 of this value and this value defaults to 15s if
    	// unset. In very large clusters, this value may be increased to reduce the
    	// possibility that the master endpoint record expires (due to other load
    	// on the etcd server) and causes masters to drop in and out of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top