Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,419 for capped (0.32 sec)

  1. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml

    Christian Wansart <******@****.***> 1573139799 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/slice.go

    		newcap = int(capmem >> shift)
    		capmem = uintptr(newcap) << shift
    	default:
    		lenmem = uintptr(oldLen) * et.Size_
    		newlenmem = uintptr(newLen) * et.Size_
    		capmem, overflow = math.MulUintptr(et.Size_, uintptr(newcap))
    		capmem = roundupsize(capmem, noscan)
    		newcap = int(capmem / et.Size_)
    		capmem = uintptr(newcap) * et.Size_
    	}
    
    	// The check of overflow in addition to capmem > maxAlloc is needed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager_windows.go

    	// Allocate should already be called during predicateAdmitHandler.Admit(),
    	// just try to fetch device runtime information from cached state here
    	devOpts, err := cm.deviceManager.GetDeviceRunContainerOptions(pod, container)
    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/debugger/comparer.go

    		cached = append(cached, string(pod.UID))
    	}
    
    	return compareStrings(actual, cached)
    }
    
    func compareStrings(actual, cached []string) (missed, redundant []string) {
    	missed, redundant = []string{}, []string{}
    
    	sort.Strings(actual)
    	sort.Strings(cached)
    
    	compare := func(i, j int) int {
    		if i == len(actual) {
    			return 1
    		} else if j == len(cached) {
    			return -1
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    func (b *Builder) isLocal() bool {
    	return b.local
    }
    
    // Mapper returns a copy of the current mapper.
    func (b *Builder) Mapper() *mapper {
    	mapper := *b.mapper
    	return &mapper
    }
    
    // URL accepts a number of URLs directly.
    func (b *Builder) URL(httpAttemptCount int, urls ...*url.URL) *Builder {
    	for _, u := range urls {
    		b.paths = append(b.paths, &URLVisitor{
    			URL:              u,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/par/work.go

    	}
    }
    
    // Add adds item to the work set, if it hasn't already been added.
    func (w *Work[T]) Add(item T) {
    	w.mu.Lock()
    	w.init()
    	if !w.added[item] {
    		w.added[item] = true
    		w.todo = append(w.todo, item)
    		if w.waiting > 0 {
    			w.wait.Signal()
    		}
    	}
    	w.mu.Unlock()
    }
    
    // Do runs f in parallel on items from the work set,
    // with at most n invocations of f running at a time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. cmd/iam.go

    	if !ok {
    		return arn.ARN{}, "", fmt.Errorf("RoleARN %s is not defined.", arnStr)
    	}
    	return roleArn, rolePolicy, nil
    }
    
    // DeletePolicy - deletes a canned policy from backend. `notifyPeers` is true
    // whenever this is called via the API. It is false when called via a
    // notification from another peer. This is to avoid infinite loops.
    func (sys *IAMSys) DeletePolicy(ctx context.Context, policyName string, notifyPeers bool) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/prober_manager.go

    // manager use the cached probe results to set the appropriate Ready state in the PodStatus when
    // requested (UpdatePodStatus). Updating probe parameters is not currently supported.
    type Manager interface {
    	// AddPod creates new probe workers for every container probe. This should be called for every
    	// pod created.
    	AddPod(pod *v1.Pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top