Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,300 for setS (0.11 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetstatus.go

    	return &DaemonSetStatusApplyConfiguration{}
    }
    
    // WithCurrentNumberScheduled sets the CurrentNumberScheduled field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the CurrentNumberScheduled field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config/param/template.go

    // Returns the set of template parameters not defined in params.
    func (t Template) MissingParams(params Params) sets.String {
    	out := sets.New[string]()
    	for needed := range t.params {
    		if !params.Contains(needed) {
    			out.Insert(needed)
    		}
    	}
    	return out
    }
    
    func getParams(n parse.Node) sets.String {
    	out := sets.New[string]()
    	switch n.Type() {
    	case parse.NodeField:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the BackoffLimit field is set to the value of the last call.
    func (b *JobSpecApplyConfiguration) WithBackoffLimit(value int32) *JobSpecApplyConfiguration {
    	b.BackoffLimit = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. pkg/api/v1/persistentvolume/util_test.go

    func collectSecretPaths(t *testing.T, path *field.Path, name string, tp reflect.Type) sets.Set[string] {
    	secretPaths := sets.New[string]()
    
    	if tp.Kind() == reflect.Pointer {
    		secretPaths.Insert(sets.List[string](collectSecretPaths(t, path, name, tp.Elem()))...)
    		return secretPaths
    	}
    
    	if strings.Contains(strings.ToLower(name), "secret") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p256.go

    	p256ToMontgomery(&e.x, &tmp)
    	return e, nil
    }
    
    // Add sets e = t1 + t2, and returns e.
    func (e *P256Element) Add(t1, t2 *P256Element) *P256Element {
    	p256Add(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Sub sets e = t1 - t2, and returns e.
    func (e *P256Element) Sub(t1, t2 *P256Element) *P256Element {
    	p256Sub(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Mul sets e = t1 * t2, and returns e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/wrappers.go

    	return c.Container
    }
    
    // Name sets `n` as the name of the inner Container.
    func (c *ContainerWrapper) Name(n string) *ContainerWrapper {
    	c.Container.Name = n
    	return c
    }
    
    // Image sets `image` as the image of the inner Container.
    func (c *ContainerWrapper) Image(image string) *ContainerWrapper {
    	c.Container.Image = image
    	return c
    }
    
    // HostPort sets `hostPort` as the host port of the inner Container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

        }
    
        /**
         * Sets whether to generate deprecation information.
         */
        public void setDeprecation(boolean deprecation) {
            this.deprecation = deprecation;
        }
    
        /**
         * Tells whether to generate unchecked information.
         */
        @Input
        public boolean isUnchecked() {
            return unchecked;
        }
    
        /**
         * Sets whether to generate unchecked information.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/go/parser/testdata/set.go2

    // Package set implements sets of any type.
    package set
    
    type Set[Elem comparable] map[Elem]struct{}
    
    func Make[Elem comparable]() Set[Elem] {
    	return make(Set(Elem))
    }
    
    func (s Set[Elem]) Add(v Elem) {
    	s[v] = struct{}{}
    }
    
    func (s Set[Elem]) Delete(v Elem) {
    	delete(s, v)
    }
    
    func (s Set[Elem]) Contains(v Elem) bool {
    	_, ok := s[v]
    	return ok
    }
    
    func (s Set[Elem]) Len() int {
    	return len(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 474 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/reinvocationcontext.go

    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type webhookReinvokeContext struct {
    	// lastWebhookOutput holds the result of the last webhook admission plugin call
    	lastWebhookOutput runtime.Object
    	// previouslyInvokedReinvocableWebhooks holds the set of webhooks that have been invoked and
    	// should be reinvoked if a later mutation occurs
    	previouslyInvokedReinvocableWebhooks sets.String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 21:31:09 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-discovery/app/options.go

    	"istio.io/istio/pkg/config/validation"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // insecureTLSCipherNames returns a list of insecure cipher suite names implemented by crypto/tls
    // which have security issues.
    func insecureTLSCipherNames() []string {
    	cipherKeys := sets.New[string]()
    	for _, cipher := range tls.InsecureCipherSuites() {
    		cipherKeys.Insert(cipher.Name)
    	}
    	return sets.SortedList(cipherKeys)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top