Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,086 for Reflector (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	if !c.wasBookmarkAfterRvReceived() {
    		return time.Time{}, true // schedule immediately
    	}
    
    	heartbeatTime := now.Add(bookmarkFrequency)
    	if c.deadline.IsZero() {
    		// Timeout is set by our client libraries (e.g. reflector) as well as defaulted by
    		// apiserver if properly configured. So this shoudln't happen in practice.
    		return heartbeatTime, true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    }
    
    func (s *Scheme) Name() string {
    	return s.schemeName
    }
    
    // internalPackages are packages that ignored when creating a default reflector name. These packages are in the common
    // call chains to NewReflector, so they'd be low entropy names for reflectors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Checking etcd version to warn about deprecated etcd versions if `ConsistentListFromCache` is enabled. ([#124612](https://github.com/kubernetes/kubernetes/pull/124612), [@ah8ad3](https://github.com/ah8ad3)) [SIG API Machinery]
    - Client-go/reflector: warns when the bookmark event for initial events hasn't been received ([#124614](https://github.com/kubernetes/kubernetes/pull/124614), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      # configuration, KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT must be
      # defined
      # TODO(pjh): still getting errors like these in kube-proxy log:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.17.md

    - When the go-client reflector relists, the ResourceVersion list option is set to the reflector's latest synced resource version to ensure the reflector does not "go back in time" and reprocess events older than it has already processed. If the server responds with an HTTP 410 (Gone) status code response, the relist falls back to using...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/config/analysis/analyzers/sidecar/selector.go

    	"istio.io/istio/pkg/config/analysis/msg"
    	"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)
Back to top