Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 506 for defaulted (0.13 sec)

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

    									Rule: v1.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: Wed Mar 06 00:00:21 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/apis/batch/v1/defaults_test.go

    					Suspend:        pointer.Bool(true),
    					ManualSelector: pointer.Bool(false),
    				},
    			},
    			expectLabels: true,
    		},
    		"All unspecified -> all pointers are defaulted and no default labels": {
    			original: &batchv1.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"mylabel": "myvalue"},
    				},
    				Spec: batchv1.JobSpec{
    					Template: v1.PodTemplateSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. pkg/apis/resource/v1alpha2/defaults_test.go

    	claim := &v1alpha2.ResourceClaim{}
    
    	// field should be defaulted
    	defaultMode := v1alpha2.AllocationModeWaitForFirstConsumer
    	output := roundTrip(t, runtime.Object(claim)).(*v1alpha2.ResourceClaim)
    	outMode := output.Spec.AllocationMode
    	if outMode != defaultMode {
    		t.Errorf("Expected AllocationMode to be defaulted to: %+v, got: %+v", defaultMode, outMode)
    	}
    
    	// field should not change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 06:52:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers.go

    }
    
    // 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: Tue Aug 27 10:54:44 UTC 2019
    - 9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/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: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/ippool-crd.yaml

                          a different subnet to the originating node.  The default value
                          (if not specified) is "always".
                        type: string
                    type: object
                  ipipMode:
                    description: Contains configuration for IPIP tunneling for this pool.
                      If not specified, then this is defaulted to "Never" (i.e. IPIP tunneling
                      is disabled).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/config/initconfiguration.go

    // If cfgPath is specified, the versioned configs will always get overridden with the one in the file (specified by cfgPath).
    // The external, versioned configuration is defaulted and converted to the internal type.
    // Right thereafter, the configuration is defaulted again with dynamic values (like IP addresses of a machine, etc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	}
    	initialResourceVersion := foo.GetResourceVersion()
    	t.Logf("CR created: %#v", foo.UnstructuredContent())
    	// spec.a and spec.b are defaulted in both versions
    	// spec.v1beta1 is defaulted when reading the incoming request
    	// spec.v1beta2 is defaulted when reading the storage response
    	mustExist(foo.Object, [][]string{{"spec", "a"}, {"spec", "b"}, {"spec", "v1beta1"}, {"spec", "v1beta2"}, {"spec", "replicas"}})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. pkg/apis/rbac/v1alpha1/conversion_test.go

    				RoleRef:  rbacapi.RoleRef{Name: "foo", APIGroup: v1alpha1.GroupName},
    				Subjects: []rbacapi.Subject{{Kind: "Group", APIGroup: v1alpha1.GroupName, Name: "system:authenticated"}},
    			},
    		},
    		"missing api group gets defaulted": {
    			old: &v1alpha1.RoleBinding{
    				RoleRef: v1alpha1.RoleRef{Name: "foo", APIGroup: v1alpha1.GroupName},
    				Subjects: []v1alpha1.Subject{
    					{Kind: "User", Name: "myuser"},
    					{Kind: "Group", Name: "mygroup"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:23:55 UTC 2017
    - 4K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            }
    
            @Override
            public Attributes getAttributes() {
                return attributes;
            }
        }
    
        private enum Requestedness {
    
            DEFAULTED(false, false),
            ENABLED(true, false),
            DISABLED(false, true);
    
            private final boolean enabled;
            private final boolean disabled;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top