Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for RangeTs (0.16 sec)

  1. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("LimitRange should ignore a pod marked for termination")
    	}
    }
    
    // newMockClientForTest creates a mock client that returns a client configured for the specified list of limit ranges
    func newMockClientForTest(limitRanges []corev1.LimitRange) *fake.Clientset {
    	mockClient := &fake.Clientset{}
    	mockClient.AddReactor("list", "limitranges", func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

     "plugins": [
       {
         "type": "bridge",
         "bridge": "cni0",
         "isGateway": true,
         "ipMasq": true,
         "promiscMode": true,
         "ipam": {
           "type": "host-local",
           "ranges": [
             [{
               "subnet": "10.88.0.0/16"
             }],
             [{
               "subnet": "2001:db8:4860::/64"
             }]
           ],
           "routes": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// arenaHints is a list of addresses at which to attempt to
    	// add more heap arenas. This is initially populated with a
    	// set of general hint addresses, and grown with the bounds of
    	// actual heap arena ranges.
    	arenaHints *arenaHint
    
    	// arena is a pre-reserved space for allocating heap arenas
    	// (the actual arenas). This is only used on 32-bit.
    	arena linearAlloc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    type ReplicaSetConditionType string
    
    // These are valid conditions of a replica set.
    const (
    	// ReplicaSetReplicaFailure is added in a replica set when one of its pods fails to be created
    	// due to insufficient quota, limit ranges, pod security policy, node selectors, etc. or deleted
    	// due to kubelet being down or finalizers are failing.
    	ReplicaSetReplicaFailure ReplicaSetConditionType = "ReplicaFailure"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// easier to reason about for tuning purposes.
    	s.sleepController = piController{
    		// Tuned loosely via Ziegler-Nichols process.
    		kp: 0.3375,
    		ti: 3.2e6,
    		tt: 1e9, // 1 second reset time.
    
    		// These ranges seem wide, but we want to give the controller plenty of
    		// room to hunt for the optimal value.
    		min: 0.001,  // 1:1000
    		max: 1000.0, // 1000:1
    	}
    	s.sleepRatio = startingScavSleepRatio
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Fixed a bug where `kubectl describe` incorrectly displayed NetworkPolicy port ranges
      (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) [SIG CLI]
    - Fixed a regression where `kubelet --hostname-override` no longer worked
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    // is used purely as an optimization. However, it must be used with
    // care.
    //
    // If typ is not nil, then src and dst must point to one or more values
    // of type typ. The caller must ensure that the ranges [src, src+size)
    // and [dst, dst+size) refer to one or more whole values of type src and
    // dst (leaving off the pointerless tail of the space is OK). If this
    // precondition is not followed, this function will fail to scan the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    func isARMImmRot(v uint32) bool {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return true
    		}
    		v = v<<2 | v>>30
    	}
    
    	return false
    }
    
    // overlap reports whether the ranges given by the given offset and
    // size pairs overlap.
    func overlap(offset1, size1, offset2, size2 int64) bool {
    	if offset1 >= offset2 && offset2+size2 > offset1 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      #   DNS_DOMAIN: the cluster's DNS domain, e.g. "cluster.local".
      #
      # OutBoundNAT ExceptionList: No SNAT for CIDRs in the list, the same as default GKE non-masquerade destination ranges listed at https://cloud.google.com/kubernetes-engine/docs/how-to/ip-masquerade-agent#default-non-masq-dests
    
      New-Item -Force -ItemType file ${l2bridge_conf} | Out-Null
      Set-Content ${l2bridge_conf} `
    '{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top