Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 245 for Negate (0.09 sec)

  1. pkg/features/kube_features.go

    	// We want to avoid a proliferation of feature gates. This feature gate:
    	// - will guard *a group* of cpumanager options whose quality level is alpha.
    	// - will never graduate to beta or stable.
    	// See https://groups.google.com/g/kubernetes-sig-architecture/c/Nxsc7pfe5rw/m/vF2djJh0BAAJ
    	// for details about the removal of this feature gate.
    	CPUManagerPolicyAlphaOptions featuregate.Feature = "CPUManagerPolicyAlphaOptions"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    }
    
    func TestPodDisruptionBudgetStrategy(t *testing.T) {
    	tests := map[string]bool{
    		"PodDisruptionBudget strategy with PDBUnhealthyPodEvictionPolicy feature gate disabled": false,
    		"PodDisruptionBudget strategy with PDBUnhealthyPodEvictionPolicy feature gate enabled":  true,
    	}
    
    	for name, enableUnhealthyPodEvictionPolicy := range tests {
    		t.Run(name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. pkg/serviceaccount/claims_test.go

    				},
    			},
    		},
    		{
    			// node with feature gate disabled
    			sa:   sa,
    			node: node,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "token bound to Node object requested, but \"ServiceAccountTokenNodeBinding\" feature gate is disabled",
    		},
    		{
    			// node & pod with feature gate disabled
    			sa:   sa,
    			node: node,
    			pod:  pod,
    			// really fast
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    */
    
    package features
    
    import (
    	"k8s.io/apimachinery/pkg/util/runtime"
    
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // alpha: v1.4
    	// MyFeature featuregate.Feature = "MyFeature"
    	//
    	// Feature gates should be listed in alphabetical, case-sensitive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // are the configuration of the bootstrap token and all the setting which are specific to the node where kubeadm
    // is executed, including:
    //
    // - NodeRegistration, that holds fields that relate to registering the new node to the cluster;
    // use it to customize the node name, the CRI socket to use or any other settings that should apply to this
    // node only (e.g. the node ip).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/controllermanager_test.go

    		{
    			name:               "standalone taint-eviction-controller should run when SeparateTaintEvictionController feature gate is enabled",
    			enableFeatureGate:  true,
    			expectInitFuncCall: true,
    		},
    		{
    			name:               "standalone taint-eviction-controller should not run when SeparateTaintEvictionController feature gate is not enabled",
    			enableFeatureGate:  false,
    			expectInitFuncCall: false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. pkg/adsc/delta.go

    		// We are receiving an unwanted resource, silently ignore it.
    		deltaLog.Debugf("Received unsubscribed resource: %v, %v", key, c.tree)
    	}
    }
    
    func (c *Client) relate(parent, child resourceKey) {
    	parentNode, f := c.tree[parent]
    	if !f {
    		deltaLog.Fatalf("Failed to relate resource: unknown parent: %v, %v", parent, c.tree)
    	}
    	childNode, f := c.tree[child]
    	if !f {
    		// Not yet watching child, create a node
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	BootstrapTokens []bootstraptokenv1.BootstrapToken `json:"bootstrapTokens,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: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/match/matchers.go

    func Or(ms ...Matcher) Matcher {
    	return func(i echo.Instance) bool {
    		for _, m := range ms {
    			if m != nil && m(i) {
    				return true
    			}
    		}
    		return false
    	}
    }
    
    // Not negates the given matcher. Example:
    //
    //	Not(Naked())
    func Not(m Matcher) Matcher {
    	return func(i echo.Instance) bool {
    		return !m(i)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais.go

    	}
    
    	// Cache recently used bucket index.
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int32(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j <= 0 {
    			// Skip empty or negated entry (including negated zero).
    			continue
    		}
    
    		// Index j was on work queue, meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    		// If k-1 is L-type, queue k for processing later in this loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top