Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 244 for Negate (0.15 sec)

  1. pkg/kubelet/cm/topologymanager/policy_options_test.go

    				PreferClosestNUMA: true,
    			},
    			policyOptions: map[string]string{
    				PreferClosestNUMANodes: "true",
    			},
    		},
    		{
    			description: "fail to set option when TopologyManagerPolicyBetaOptions feature gate is not set",
    			featureGate: pkgfeatures.TopologyManagerPolicyBetaOptions,
    			policyOptions: map[string]string{
    				PreferClosestNUMANodes: "true",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - The Pod API field `.spec.schedulingGates[*].name` now requires qualified names (like `example.com/mygate`), matching validation for names of `.spec.readinessGates[*].name`. Any uses of the alpha scheduling gate feature prior to 1.27 that do not match that validation must be renamed or deleted before upgrading to 1.27. ([#115821](https://github.com/kubernetes/kubernetes/pull/115821), [@lianghao208](htt...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - Marked the feature gate `ExperimentalHostUserNamespaceDefaulting` as deprecated.
      Enabling the feature gate already had no effect; the deprecation allows for removing the feature gate in a future release. ([#116723](https://github.com/kubernetes/kubernetes/pull/116723), [@SergeyKanzhelev](https://github.com/SergeyKanzhelev)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    			disabledFeatures: []featuregate.Feature{kubefeatures.ServiceAccountTokenNodeBindingValidation},
    			expectErr:        "the \"ServiceAccountTokenNodeBinding\" feature gate can only be enabled if the \"ServiceAccountTokenNodeBindingValidation\" feature gate is also enabled",
    		},
    	}
    
    	for _, testcase := range testCases {
    		t.Run(testcase.name, func(t *testing.T) {
    			options := NewBuiltInAuthenticationOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	// +optional
    	DryRun bool `json:"dryRun,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. pkg/proxy/servicechangetracker_test.go

    					bsvcPortInfo.loadBalancerVIPs = makeIPs("10.1.2.4")
    				}),
    			},
    		},
    		{
    			desc:     "load balancer service ipMode VIP feature gate disable",
    			ipFamily: v1.IPv4Protocol,
    
    			service: makeTestService("ns1", "load-balancer", func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ClusterIP = "172.16.55.11"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // if they encounter an unrecognized policy in this field.
      //
      // This field is beta-level. The eviction API uses this field when
      // the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).
      // +optional
      optional string unhealthyPodEvictionPolicy = 4;
    }
    
    // PodDisruptionBudgetStatus represents information about the status of a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/README

    script should continue regardless.
    
    The command prefix [cond] indicates that the command on the rest of the line
    should only run when the condition is satisfied.
    
    A condition can be negated: [!root] means to run the rest of the line only if
    the user is not root. Multiple conditions may be given for a single command,
    for example, '[linux] [amd64] skip'. The command will run if all conditions are
    satisfied.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    func (c *Plugin[H]) ValidateInitialization() error {
    	// By default enabled is set to false. It is up to types which embed this
    	// struct to set it to true (if feature gate is enabled, or other conditions)
    	if !c.enabled {
    		return nil
    	}
    	if c.Handler == nil {
    		return errors.New("missing handler")
    	}
    	if c.informerFactory == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	Authorization  *DelegatingAuthorizationOptions
    	Audit          *AuditOptions
    	Features       *FeatureOptions
    	CoreAPI        *CoreAPIOptions
    
    	// FeatureGate is a way to plumb feature gate through if you have them.
    	FeatureGate featuregate.FeatureGate
    	// ExtraAdmissionInitializers is called once after all ApplyTo from the options above, to pass the returned
    	// admission plugin initializers to Admission.ApplyTo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top