Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 321 for Negate (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    func (cfg *ClusterConfiguration) EncryptionAlgorithmType() EncryptionAlgorithmType {
    	// If the feature gate is set to true, or false respect it.
    	// If the feature gate is not set, use the EncryptionAlgorithm field (v1beta4).
    	// TODO: remove this function when the feature gate is removed.
    	if enabled, ok := cfg.FeatureGates[features.PublicKeysECDSA]; ok {
    		if enabled {
    			return EncryptionAlgorithmECDSAP256
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		}
    		if len(m.Groups.Expression) > 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("groups").Child("expression"), m.Groups.Expression, "expression is not supported when StructuredAuthenticationConfiguration feature gate is disabled"))
    		}
    		if len(m.UID.Claim) > 0 || len(m.UID.Expression) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. pkg/probe/exec/exec.go

    			if utilfeature.DefaultFeatureGate.Enabled(features.ExecProbeTimeout) {
    				return probe.Failure, err.Error(), nil
    			}
    
    			klog.Warningf("Exec probe timed out but ExecProbeTimeout feature gate was disabled")
    		}
    
    		return probe.Unknown, "", err
    	}
    	return probe.Success, string(data), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top