Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 596 for limiting (0.19 sec)

  1. src/runtime/mheap.go

    	// to do this before calling sysUsed because that may commit address space.
    	bytesToScavenge := uintptr(0)
    	forceScavenge := false
    	if limit := gcController.memoryLimit.Load(); !gcCPULimiter.limiting() {
    		// Assist with scavenging to maintain the memory limit by the amount
    		// that we expect to page in.
    		inuse := gcController.mappedReady.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    // any API calls.
    func RemoveTaintOffNode(ctx context.Context, c clientset.Interface, nodeName string, node *v1.Node, taints ...*v1.Taint) error {
    	if len(taints) == 0 {
    		return nil
    	}
    	// Short circuit for limiting amount of API calls.
    	if node != nil {
    		match := false
    		for _, taint := range taints {
    			if taintutils.TaintExists(node.Spec.Taints, taint) {
    				match = true
    				break
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"namespace":               "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    #cgo directives within these comments to tweak the behavior of the C, C++
    or Fortran compiler. Values defined in multiple directives are concatenated
    together. The directive can include a list of build constraints limiting its
    effect to systems satisfying one of the constraints
    (see https://golang.org/pkg/go/build/#hdr-Build_Constraints for details about the constraint syntax).
    For example:
    
    	// #cgo CFLAGS: -DPNG_DEBUG=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // by setting the `name` field, leaving `selector` blank, and setting namespace
      // if `paramKind` is namespace-scoped.
      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
      // the search for params to a specific namespace. Applies to both `name` and
      // `selector` fields.
      //
      // A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"namespace":               "namespace is the namespace of the referenced resource. Allows limiting the search for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		// hijacked. Set Close to ensure that:
    		req.Close = true
    	}
    	return req, nil
    }
    
    // MaxBytesReader is similar to [io.LimitReader] but is intended for
    // limiting the size of incoming request bodies. In contrast to
    // io.LimitReader, MaxBytesReader's result is a ReadCloser, returns a
    // non-nil error of type [*MaxBytesError] for a Read beyond the limit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// if `paramKind` is namespace-scoped.
    	//
    	// +optional
    	Name string
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    	// the search for params to a specific namespace. Applies to both `name` and
    	// `selector` fields.
    	//
    	// A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // by setting the `name` field, leaving `selector` blank, and setting namespace
      // if `paramKind` is namespace-scoped.
      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
      // the search for params to a specific namespace. Applies to both `name` and
      // `selector` fields.
      //
      // A per-namespace parameter may be used by specifying a namespace-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    	fakePodControl := controller.FakePodControl{}
    	manager.podControl = &fakePodControl
    
    	// Enqueue once. Then process it. Disable rate-limiting for this.
    	manager.queue = workqueue.NewTypedRateLimitingQueue(workqueue.NewTypedMaxOfRateLimiter[string]())
    	manager.enqueueRS(rs)
    	manager.processNextWorkItem(ctx)
    	// It should have been requeued.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top