Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 375 for initiatives (0.18 sec)

  1. pkg/config/crd/validator.go

    	SkipMissing bool
    }
    
    type ValidationIgnorer struct {
    	mu                  sync.RWMutex
    	patternsByNamespace map[string]sets.String
    }
    
    // NewValidationIgnorer initializes the ignorer for the validatior, pairs are in namespace/namePattern format.
    func NewValidationIgnorer(pairs ...string) *ValidationIgnorer {
    	vi := &ValidationIgnorer{
    		patternsByNamespace: make(map[string]sets.String),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/addressed_test.go

    }
    
    // gets is an address-and-interface-mentioning way of
    // implementing structure assignment.
    //
    //go:noinline
    func (to *V) getsI(from interface{}) {
    	*to = *from.(*V)
    }
    
    // fill_ssa initializes r with V{w:w, x:x, p:p}
    //
    //go:noinline
    func fill_ssa(w, x int64, r, p *V) {
    	*r = V{w: w, x: x, p: p}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/balanced_allocation.go

    }
    
    // ScoreExtensions of the Score plugin.
    func (ba *BalancedAllocation) ScoreExtensions() framework.ScoreExtensions {
    	return nil
    }
    
    // NewBalancedAllocation initializes a new plugin and returns it.
    func NewBalancedAllocation(_ context.Context, baArgs runtime.Object, h framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	args, ok := baArgs.(*config.NodeResourcesBalancedAllocationArgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/config.go

    			Key:   LookupBindPassword,
    			Value: "",
    		},
    	}
    )
    
    // Enabled returns if LDAP config is enabled.
    func Enabled(kvs config.KVS) bool {
    	return kvs.Get(ServerAddr) != ""
    }
    
    // Lookup - initializes LDAP config, overrides config, if any ENV values are set.
    func Lookup(s config.Config, rootCAs *x509.CertPool) (l Config, err error) {
    	l = Config{}
    
    	// Purge all removed keys first
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    type _List[T any] struct {
    	root _Element[T] // sentinel list element, only &root, root.prev, and root.next are used
    	len  int         // current list length excluding (this) sentinel element
    }
    
    // Init initializes or clears list l.
    func (l *_List[T]) Init() *_List[T] {
    	l.root.next = &l.root
    	l.root.prev = &l.root
    	l.len = 0
    	return l
    }
    
    // New returns an initialized list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/net/http/http.go

    }
    
    // Pusher is the interface implemented by ResponseWriters that support
    // HTTP/2 server push. For more background, see
    // https://tools.ietf.org/html/rfc7540#section-8.2.
    type Pusher interface {
    	// Push initiates an HTTP/2 server push. This constructs a synthetic
    	// request using the given target and options, serializes that request
    	// into a PUSH_PROMISE frame, then dispatches that request using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server.go

    	a.registeredHandlePaths = append(a.registeredHandlePaths, path)
    }
    func (a *filteringContainer) RegisteredHandlePaths() []string {
    	return a.registeredHandlePaths
    }
    
    // ListenAndServeKubeletServer initializes a server to respond to HTTP network requests on the Kubelet.
    func ListenAndServeKubeletServer(
    	host HostInterface,
    	resourceAnalyzer stats.ResourceAnalyzer,
    	kubeCfg *kubeletconfiginternal.KubeletConfiguration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  8. src/math/big/decimal.go

    // (equivalent of "sticky bit" in binary rounding).
    
    // TODO(gri) Along the same lines, enforce some limit to shift magnitudes
    // to avoid "infinitely" long running conversions (until we run out of space).
    
    // Init initializes x to the decimal representation of m << shift (for
    // shift >= 0), or m >> -shift (for shift < 0).
    func (x *decimal) init(m nat, shift int) {
    	// special case 0
    	if len(m) == 0 {
    		x.mant = x.mant[:0]
    		x.exp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. pkg/kube/namespace/filter.go

    			return nil, err
    		}
    		requirements = append(requirements, *r)
    	}
    	selector := labels.NewSelector()
    	selector = selector.Add(requirements...)
    	return selector, nil
    }
    
    // SelectorsChanged initializes the discovery filter state with the discovery selectors and selected namespaces
    func (d *discoveryNamespacesFilter) selectorsChanged(
    	discoverySelectors []*meshapi.LabelSelector,
    	notify bool,
    ) {
    	d.lock.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    // ApplyTo adds the admission chain to the server configuration.
    // In case admission plugin names were not provided by a cluster-admin they will be prepared from the recommended/default values.
    // In addition the method lazily initializes a generic plugin that is appended to the list of pluginInitializers
    // note this method uses:
    //
    //	genericconfig.Authorizer
    func (a *AdmissionOptions) ApplyTo(
    	c *server.Config,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top