Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for hamster (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			// still require the field to be declared in the schema.
    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    			// 2. If e evaluates to a message and f is not a declared field for the message,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/kube/apimirror/probe.go

    	Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
    
    	// Service is the name of the service to place in the gRPC HealthCheckRequest
    	// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
    	//
    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    )
    
    const (
    	namespace = "apiserver"
    	subsystem = "watch_cache"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/net/netip/slow_test.go

    	}
    
    	return s, nil
    }
    
    // parseIPv4Slow parses and returns an IPv4 address in dotted quad
    // form, e.g. "192.168.0.1". It is slow but easy to read, and the
    // reference implementation against which we compare faster
    // implementations for correctness.
    func parseIPv4Slow(s string) (Addr, error) {
    	fs := strings.Split(s, ".")
    	if len(fs) != 4 {
    		return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): invalid IP address", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_generic.go

    // and don't use hardware acceleration.
    //
    // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
    //
    // The slicing-by-8 algorithm is a faster implementation that uses a bigger
    // table (8*256*4 bytes).
    
    package crc32
    
    import "internal/byteorder"
    
    // simpleMakeTable allocates and constructs a Table for the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. pkg/dns/client/dns.go

    	proxyDomain      string
    	proxyDomainParts []string
    
    	respondBeforeSync         bool
    	forwardToUpstreamParallel bool
    }
    
    // LookupTable is borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hostsfile.go
    type LookupTable struct {
    	// This table will be first looked up to see if the host is something that we got a Nametable entry for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// already set).
    	//
    	// This annotation will be used to compute the in-cluster network programming latency SLI, see
    	// https://github.com/kubernetes/community/blob/master/sig-scalability/slos/network_programming_latency.md
    	EndpointsLastChangeTriggerTime = "endpoints.kubernetes.io/last-change-trigger-time"
    
    	// EndpointsOverCapacity will be set on an Endpoints resource when it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/util/smallset/smallset.go

    //
    // *Set construction*: sets is roughly 1kb allocations per 250 items. smallsets is 0.
    // *Contains* sets is O(1). smallsets is O(logn). smallsets is typically faster up to about 5 elements.
    //
    //	At 1000 items, it is roughly 5x slower (30ns vs 5ns).
    type Set[T constraints.Ordered] struct {
    	items []T
    }
    
    // NewPresorted creates a new Set with the given items.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/map.go

    		msanread(key, t.Key.Size_)
    	}
    	if asanenabled {
    		asanread(key, t.Key.Size_)
    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(key, uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher, since t.hasher may panic,
    	// in which case we have not actually done a write.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.Bucket, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. pkg/controller/namespace/namespace_controller.go

    	return namespaceController
    }
    
    // nsControllerRateLimiter is tuned for a faster than normal recycle time with default backoff speed and default overall
    // requeing speed.  We do this so that namespace cleanup is reliably faster and we know that the number of namespaces being
    // deleted is smaller than total number of other namespace scoped resources in a cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top