Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 224 for Unset (0.16 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/SetProperty.java

        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        SetProperty<T> unset();
    
        /**
         * {@inheritDoc}
         * <p>
         * This is similar to calling {@link #convention(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apps__v1_openapi.json

           "description": "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.appArmorProfile - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  3. hack/lib/init.sh

    set -o nounset
    set -o pipefail
    
    # Short-circuit if init.sh has already been sourced
    [[ $(type -t kube::init::loaded) == function ]] && return 0
    
    # Unset CDPATH so that path interpolation can work correctly
    # https://github.com/kubernetes/kubernetes/issues/52255
    unset CDPATH
    
    # The root of the build/dist directory
    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_traffic_policy.go

    		tls.CaCertificates = "system"
    	}
    
    	return connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol
    }
    
    // FIXME: there isn't a way to distinguish between unset values and zero values
    func (cb *ClusterBuilder) applyConnectionPool(mesh *meshconfig.MeshConfig,
    	mc *clusterWrapper, settings *networking.ConnectionPoolSettings,
    ) {
    	if settings == nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomToolingModelCrossVersionSpec.groovy

                .setStandardOutput(stdout)
                .setJvmArguments(["-Xmx256m"] + kotlinDslJvmArguments())
                .run()
        }
    
        private static List<String> kotlinDslJvmArguments() {
            // Having this unset is now deprecated, will default to `false` in Gradle 9.0
            // TODO remove - see https://github.com/gradle/gradle/issues/26810
            ['-Dorg.gradle.kotlin.dsl.skipMetadataVersionCheck=false']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/scheduling/v1/types.go

    	// preemptionPolicy is the Policy for preempting pods with lower priority.
    	// One of Never, PreemptLowerPriority.
    	// Defaults to PreemptLowerPriority if unset.
    	// +optional
    	PreemptionPolicy *apiv1.PreemptionPolicy `json:"preemptionPolicy,omitempty" protobuf:"bytes,5,opt,name=preemptionPolicy"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
      // field results in a configuration error.
      //
      // - If `paramKind` is namespace-scoped, the namespace of the object being
      // evaluated for admission will be used when this field is left unset. Take
      // care that if this is left empty the binding must not match any cluster-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/authentication.go

    	// namespaceMutualTLSMode is the MutualTLSMode corresponding to the namespace-level PeerAuthentication.
    	// All namespace-level policies, and only them, are added to this map. If the policy mTLS mode is set
    	// to UNSET, it will be resolved to the value set by mesh policy if exist (i.e not UNKNOWN), or MTLSPermissive
    	// otherwise.
    	namespaceMutualTLSMode map[string]MutualTLSMode
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. buildscripts/rewrite-old-new.sh

    	fi
    }
    
    function verify_rewrite() {
    	start_port=$1
    
    	export MINIO_ACCESS_KEY=minio
    	export MINIO_SECRET_KEY=minio123
    	export MC_HOST_minio="http://minio:minio123@127.0.0.1:${start_port}/"
    	unset MINIO_KMS_AUTO_ENCRYPTION # do not auto-encrypt objects
    	export MINIO_CI_CD=1
    
    	MC_BUILD_DIR="mc-$RANDOM"
    	if ! git clone --quiet https://github.com/minio/mc "$MC_BUILD_DIR"; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

      # Make sure our own Go binaries are in PATH.
      export PATH="${KUBE_GOPATH}/bin:${PATH}"
    
      # Unset GOBIN in case it already exists in the current session.
      # Cross-compiles will not work with it set.
      unset GOBIN
    
      # Turn on modules and workspaces (both are default-on).
      unset GO111MODULE
      unset GOWORK
    
      # This may try to download our specific Go version.  Do it last so it uses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top