Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 304 for Categories (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    	authenticationLatency.WithContext(ctx).WithLabelValues(resultLabel).Observe(authFinish.Sub(authStart).Seconds())
    }
    
    // compressUsername maps all possible usernames onto a small set of categories
    // of usernames. This is done both to limit the cardinality of the
    // authorized_user_requests metric, and to avoid pushing actual usernames in the
    // metric.
    func compressUsername(username string) string {
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		namesAcceptedCondition.Reason = "ListKindConflict"
    		namesAcceptedCondition.Message = err.Error()
    	} else {
    		newNames.ListKind = requestedNames.ListKind
    	}
    
    	newNames.Categories = requestedNames.Categories
    
    	// if we haven't changed the condition, then our names must be good.
    	if namesAcceptedCondition.Status == apiextensionsv1.ConditionUnknown {
    		namesAcceptedCondition.Status = apiextensionsv1.ConditionTrue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	ShortNames() []string
    }
    
    // CategoriesProvider allows a resource to specify which groups of resources (categories) it's part of. Categories can
    // be used by API clients to refer to a batch of resources by using a single name (e.g. "all" could translate to "pod,rc,svc,...").
    type CategoriesProvider interface {
    	Categories() []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. src/sync/cond.go

    // patterns].
    //
    // [the Go memory model]: https://go.dev/ref/mem
    // [Roberto Clapis's series on advanced concurrency patterns]: https://blogtitle.github.io/categories/concurrency/
    // [Bryan Mills's talk on concurrency patterns]: https://drive.google.com/file/d/1nPdvhB0PutEJzdCq5ms6UI58dp50fcAN/view
    type Cond struct {
    	noCopy noCopy
    
    	// L is held while observing or changing the condition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/regexp/syntax/doc.go

    	[[:upper:]]    upper case (== [A-Z])
    	[[:word:]]     word characters (== [0-9A-Za-z_])
    	[[:xdigit:]]   hex digit (== [0-9A-Fa-f])
    
    Unicode character classes are those in [unicode.Categories] and [unicode.Scripts].
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// categories is a list of grouped resources this custom resource belongs to (e.g. 'all').
    	// This is published in API discovery documents, and used by clients to support invocations like
    	// `kubectl get all`.
    	// +optional
    	// +listType=atomic
    	Categories []string `json:"categories,omitempty" protobuf:"bytes,6,rep,name=categories"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"svc"}
    }
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // Destroy cleans up everything on shutdown.
    func (r *REST) Destroy() {
    	r.Store.Destroy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/unicode/letter_test.go

    		}
    		if r < range_.Lo {
    			hi = m
    		} else {
    			lo = m + 1
    		}
    	}
    	return false
    }
    
    func TestLatinOffset(t *testing.T) {
    	var maps = []map[string]*RangeTable{
    		Categories,
    		FoldCategory,
    		FoldScript,
    		Properties,
    		Scripts,
    	}
    	for _, m := range maps {
    		for name, tab := range m {
    			i := 0
    			for i < len(tab.R16) && tab.R16[i].Hi <= MaxLatin1 {
    				i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top