Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for fieldsV1 (0.26 sec)

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

    			NodeName: nodeName,
    		},
    	}
    }
    
    func makeTestStoreElement(pod *v1.Pod) *storeElement {
    	return &storeElement{
    		Key:    "prefix/ns/" + pod.Name,
    		Object: pod,
    		Labels: labels.Set(pod.Labels),
    		Fields: fields.Set{"spec.nodeName": pod.Spec.NodeName},
    	}
    }
    
    type testWatchCache struct {
    	*watchCache
    
    	bookmarkRevision chan int64
    	stopCh           chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server_linux.go

    	"strings"
    	"time"
    
    	"github.com/google/cadvisor/machine"
    	"github.com/google/cadvisor/utils/sysfs"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/watch"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    	RouteMatched       string
    	RouteConfigMatched string
    	VirtualHostMatched string
    	ClusterMatched     string
    	// StrictMatch controls whether we will strictly match the result. If unset, empty fields will
    	// be ignored, allowing testing only fields we care about This allows asserting that the result
    	// is *exactly* equal, allowing asserting a field is empty
    	StrictMatch bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    		// and if corresponding fields have the same names, their (field) types unify,
    		// and they have identical tags. Two embedded fields are considered to have the same
    		// name. Lower-case field names from different packages are always different.
    		if y, ok := y.(*Struct); ok {
    			if x.NumFields() == y.NumFields() {
    				for i, f := range x.fields {
    					g := y.fields[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/net/netip/netip.go

    func parseIPv4(s string) (ip Addr, err error) {
    	var fields [4]uint8
    	err = parseIPv4Fields(s, 0, len(s), fields[:])
    	if err != nil {
    		return Addr{}, err
    	}
    	return AddrFrom4(fields), nil
    }
    
    // parseIPv6 parses s as an IPv6 address (in form "2001:db8::68").
    func parseIPv6(in string) (Addr, error) {
    	s := in
    
    	// Split off the zone right from the start. Yes it's a second scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		// parseable as a regular dotted decimal field.
    		"127.1",
    		// IPv4 field has value >255
    		"192.168.300.1",
    		// IPv4 with too many fields
    		"192.168.0.1.5.6",
    		// IPv6 with not enough fields
    		"1:2:3:4:5:6:7",
    		// IPv6 with too many fields
    		"1:2:3:4:5:6:7:8:9",
    		// IPv6 with 8 fields and a :: expander
    		"1:2:3:4::5:6:7:8",
    		// IPv6 with a field bigger than 2b
    		"fe801::1",
    		// IPv6 with non-hex values in field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    ue":80}]},"unit":"ops"},"overrides":[]},"gridPos":{"h":3,"w":6,"x":0,"y":3},"id":20,"links":[],"maxDataPoints":100,"options":{"colorMode":"none","graphMode":"area","justifyMode":"auto","orientation":"horizontal","reduceOptions":{"calcs":["mean"],"fields":"","values":false},"textMode":"auto"},"pluginVersion":"10.1.5","targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"expr":"round(sum(irate(istio_requests_total{reporter=\"source\"}[1m])), 0.001)","intervalFactor":1,"refId":"A","...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/watch_based_manager.go

    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/client-go/tools/cache"
    
    	"k8s.io/klog/v2"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// KeyFunc is used to get a key in the underlying storage for a given object.
    	KeyFunc func(runtime.Object) (string, error)
    
    	// GetAttrsFunc is used to get object labels, fields
    	GetAttrsFunc func(runtime.Object) (label labels.Set, field fields.Set, err error)
    
    	// IndexerFuncs is used for optimizing amount of watchers that
    	// needs to process an incoming event.
    	IndexerFuncs storage.IndexerFuncs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/unify.go

    		// and if corresponding fields have the same names, their (field) types unify,
    		// and they have identical tags. Two embedded fields are considered to have the same
    		// name. Lower-case field names from different packages are always different.
    		if y, ok := y.(*Struct); ok {
    			if x.NumFields() == y.NumFields() {
    				for i, f := range x.fields {
    					g := y.fields[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top