Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for unse (0.07 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/conditions.go

    //     newCondition, LastTransitionTime is set to now if the new status differs from the old status)
    //  2. if a condition of the specified type does not exist (LastTransitionTime is set to now() if unset, and newCondition is appended)
    func SetStatusCondition(conditions *[]metav1.Condition, newCondition metav1.Condition) (changed bool) {
    	if conditions == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 22 01:13:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

        # The name of the service account to use.
        # If not set, the release name is used
        name: ""
    
      podAnnotations:
        prometheus.io/port: "15020"
        prometheus.io/scrape: "true"
        prometheus.io/path: "/stats/prometheus"
        inject.istio.io/templates: "gateway"
        sidecar.istio.io/inject: "true"
    
      # Define the security context for the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/os/env.go

    	return s[:i], i
    }
    
    // Getenv retrieves the value of the environment variable named by the key.
    // It returns the value, which will be empty if the variable is not present.
    // To distinguish between an empty value and an unset value, use [LookupEnv].
    func Getenv(key string) string {
    	testlog.Getenv(key)
    	v, _ := syscall.Getenv(key)
    	return v
    }
    
    // LookupEnv retrieves the value of the environment variable named
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. cmd/admin-server-info.go

    	}
    	sort.Ints(props.PoolNumbers)
    	props.PoolNumber = func() int {
    		if len(props.PoolNumbers) == 1 {
    			return props.PoolNumbers[0]
    		}
    		return math.MaxInt // this indicates that its unset.
    	}()
    
    	sensitive := map[string]struct{}{
    		config.EnvAccessKey:         {},
    		config.EnvSecretKey:         {},
    		config.EnvRootUser:          {},
    		config.EnvRootPassword:      {},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.PersistentVolumeStatus{
    					Phase: api.VolumeBound,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "4Gi", "ROX", "", "Bound", "default/test", "", "<unset>", "", "<unknown>", "<unset>"}}},
    		},
    		{
    			// Test failed
    			pv: api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    				Spec: api.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    	addConfigError := func(err error, definition *admissionregistrationv1.ValidatingAdmissionPolicy, binding *admissionregistrationv1.ValidatingAdmissionPolicyBinding) {
    		// we always default the FailurePolicy if it is unset and validate it in API level
    		var policy admissionregistrationv1.FailurePolicyType
    		if definition.Spec.FailurePolicy == nil {
    			policy = admissionregistrationv1.Fail
    		} else {
    			policy = *definition.Spec.FailurePolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/types.go

    // compares the MaximumVolumeSize against the requested size of pending volumes
    // to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back
    // to a comparison against the less precise Capacity. If that is also unset,
    // the scheduler assumes that capacity is insufficient and tries some other
    // node.
    type CSIStorageCapacity struct {
    	metav1.TypeMeta `json:",inline"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    	//
    	// This field can be used to simulate a future upload that collects recently
    	// modified counters.
    	UploadStartTime time.Time
    
    	// UploadURL, if set, overrides the URL used to receive uploaded reports. If
    	// unset, this URL defaults to https://telemetry.go.dev/upload.
    	UploadURL string
    }
    
    // Start initializes telemetry using the specified configuration.
    //
    // Start opens the local telemetry database so that counter increment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/kubelet/userns/userns_manager_test.go

    			podSetAfterCleanup:   []types.UID{"pod-1"},
    			podUnsetAfterCleanup: []types.UID{"pod-2"},
    		},
    		{
    			name:                 "pod set before cleanup but not listed ==> unset",
    			podSetBeforeCleanup:  []types.UID{"pod-1", "pod-2"},
    			runningPods:          []*kubecontainer.Pod{{ID: "pod-1"}},
    			podUnsetAfterCleanup: []types.UID{"pod-1", "pod-2"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top