Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,724 for select64 (0.34 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	// in constant time, we compute t = h - (2¹³⁰ - 5), and select h as the
    	// result if the subtraction underflows, and t otherwise.
    
    	hMinusP0, b := bits.Sub64(h0, p0, 0)
    	hMinusP1, b := bits.Sub64(h1, p1, b)
    	_, b = bits.Sub64(h2, p2, b)
    
    	// h = h if h < p else h - p
    	h0 = select64(b, h0, hMinusP0)
    	h1 = select64(b, h1, hMinusP1)
    
    	// Finally, we compute the last Poly1305 step
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/sidecar/selector.go

    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // SelectorAnalyzer validates, per namespace, that:
    // * sidecar resources that define a workload selector match at least one pod
    // * there aren't multiple sidecar resources that select overlapping pods
    type SelectorAnalyzer struct{}
    
    var _ analysis.Analyzer = &SelectorAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    func ParseSelectorOrDie(s string) Selector {
    	selector, err := ParseSelector(s)
    	if err != nil {
    		panic(err)
    	}
    	return selector
    }
    
    // ParseSelector takes a string representing a selector and returns an
    // object suitable for matching, or an error.
    func ParseSelector(selector string) (Selector, error) {
    	return parseSelector(selector,
    		func(lhs, rhs string) (newLhs, newRhs string, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/selector.go

    	"k8s.io/apimachinery/pkg/watch"
    )
    
    // Selector is a Visitor for resources that match a label selector.
    type Selector struct {
    	Client        RESTClient
    	Mapping       *meta.RESTMapping
    	Namespace     string
    	LabelSelector string
    	FieldSelector string
    	LimitChunks   int64
    }
    
    // NewSelector creates a resource selector which hides details of getting items by their label selector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 15:08:01 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    type Requirements []Requirement
    
    // Selector represents a label selector.
    type Selector interface {
    	// Matches returns true if this selector matches the given set of labels.
    	Matches(Labels) bool
    
    	// Empty returns true if this selector does not restrict the selection space.
    	Empty() bool
    
    	// String returns a human readable string that represents this selector.
    	String() string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/telemetry/selector.go

    	// Using an index for selectoes is problematic because selector != label
    	// We can match a label to a selector, but we can't generate a selector from a label.
    	c.ForEach(gvk.Telemetry, func(rs *resource.Instance) bool {
    		s := rs.Message.(*v1alpha1.Telemetry)
    
    		// For this analysis, ignore Telemetries with no selectors specified at all.
    		if s.Selector == nil || len(s.GetSelector().MatchLabels) == 0 {
    			return true
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/util/workloadinstances/selector.go

    )
    
    // ByServiceSelector returns a predicate that matches workload instances
    // of a given service.
    func ByServiceSelector(namespace string, selector labels.Instance) func(*model.WorkloadInstance) bool {
    	return func(wi *model.WorkloadInstance) bool {
    		return wi.Namespace == namespace && selector.Match(wi.Endpoint.Labels)
    	}
    }
    
    // FindAllInIndex returns a list of workload instances in the index
    // that match given predicate.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 04:26:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

    kind: Telemetry
    metadata:
      name: dupe-1
      namespace: default
    spec:
      selector:
        matchLabels:
          app: reviews # Multiple telemetries have the same selector, should generate errors for both
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
                metric: ALL_METRICS
              disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

    spec:
      containers:
      - image: proxyv2:1.3.1
        name: istio-proxy
    ---
    # only selector is set, should be ineffective
    apiVersion: security.istio.io/v1
    kind: RequestAuthentication
    metadata:
      namespace: default
      name: ra-ineffective
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # only selector is set, should be ineffective
    apiVersion: security.istio.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/select.go

    	// optimization: zero-case select
    	if ncas == 0 {
    		return []ir.Node{mkcallstmt("block")}
    	}
    
    	// optimization: one-case select: single op.
    	if ncas == 1 {
    		cas := cases[0]
    		ir.SetPos(cas)
    		l := cas.Init()
    		if cas.Comm != nil { // not default:
    			n := cas.Comm
    			l = append(l, ir.TakeInit(n)...)
    			switch n.Op() {
    			default:
    				base.Fatalf("select %v", n.Op())
    
    			case ir.OSEND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top