Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 506 for defaulted (0.17 sec)

  1. pkg/apis/storage/v1/defaults_test.go

    	} else if *outMode != defaultMode {
    		t.Errorf("Expected VolumeBindingMode to be defaulted to: %+v, got: %+v", defaultMode, outMode)
    	}
    }
    
    func TestSetDefaultCSIDriver(t *testing.T) {
    	enabled := true
    	disabled := false
    	tests := []struct {
    		desc     string
    		field    string
    		wantSpec *storagev1.CSIDriverSpec
    	}{
    		{
    			desc:     "AttachRequired default to true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. pkg/apis/storage/v1beta1/defaults_test.go

    	}
    }
    
    func TestSetDefaultAttachRequired(t *testing.T) {
    	driver := &storagev1beta1.CSIDriver{}
    
    	// field should be defaulted
    	defaultAttach := true
    	defaultPodInfo := false
    	output := roundTrip(t, runtime.Object(driver)).(*storagev1beta1.CSIDriver)
    	outAttach := output.Spec.AttachRequired
    	if outAttach == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/internalbootstrap/defaults_test.go

    			defaulted := original.DeepCopyObject().(*flowcontrol.FlowSchema)
    			scheme.Default(defaulted)
    			if apiequality.Semantic.DeepEqual(original, defaulted) {
    				t.Logf("Defaulting makes no change to FlowSchema: %q", original.Name)
    				return
    			}
    			t.Errorf("Expected defaulting to not change FlowSchema: %q, diff: %s", original.Name, cmp.Diff(original, defaulted))
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/helpers.go

    var swaggerMetadataDescriptions = metav1.ObjectMeta{}.SwaggerDoc()
    
    // getColumnsForVersion returns the columns for given version or nil.
    // NOTE: the newly logically-defaulted columns is not pointing to the original CRD object.
    // One cannot mutate the original CRD columns using the logically-defaulted columns. Please iterate through
    // the original CRD object instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 05:49:58 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. releasenotes/notes/pilot-autoscale.yaml

    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Improved** the variables `PILOT_MAX_REQUESTS_PER_SECOND` (which rate limits the incoming requests, previously defaulted to 25.0)
        and `PILOT_PUSH_THROTTLE` (which limits the number of concurrent responses, previously defaulted to 100) to automatically scale with the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 08:42:13 UTC 2023
    - 428 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    	DefaultAPIBindPort = 6443
    	// DefaultCertificatesDir defines default certificate directory
    	DefaultCertificatesDir = "/etc/kubernetes/pki"
    	// DefaultImageRepository defines default image registry
    	// (previously this defaulted to k8s.gcr.io)
    	DefaultImageRepository = "registry.k8s.io"
    	// DefaultManifestsDir defines default manifests directory
    	DefaultManifestsDir = "/etc/kubernetes/manifests"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // Owner returns the security descriptor owner and whether it was defaulted.
    func (sd *SECURITY_DESCRIPTOR) Owner() (owner *SID, defaulted bool, err error) {
    	err = getSecurityDescriptorOwner(sd, &owner, &defaulted)
    	return
    }
    
    // SetOwner sets the absolute security descriptor owner.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetOwner(owner *SID, defaulted bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    // If cfgPath is specified, defaultversionedcfg will always get overridden. Otherwise, the default config (often populated by flags) will be used.
    // Then the external, versioned configuration is defaulted and converted to the internal type.
    // Right thereafter, the configuration is defaulted again with dynamic values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/v1beta1/defaults_test.go

    									Rule: v1beta1.Rule{
    										Scope: &allScopes, // defaulted
    									},
    								},
    							},
    						},
    					},
    					FailurePolicy: &fail,
    				},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			original := test.original
    			expected := test.expected
    			legacyscheme.Scheme.Default(original)
    			if !apiequality.Semantic.DeepEqual(original, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/helpers.go

    }
    
    // getColumnsForVersion returns the columns for given version in given CRD.
    // NOTE: the newly logically-defaulted columns is not pointing to the original CRD object.
    // One cannot mutate the original CRD columns using the logically-defaulted columns. Please iterate through
    // the original CRD object instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 30 11:46:49 UTC 2021
    - 7.2K bytes
    - Viewed (0)
Back to top