Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for Visiting (0.12 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return parameters, nil
    	}
    
    	objs, err := pl.classParametersIndexer.ByIndex(generatedFromIndex, classParametersReferenceKeyFunc(class.ParametersRef))
    	if err != nil {
    		return nil, statusError(logger, fmt.Errorf("listing class parameters failed: %v", err))
    	}
    	switch len(objs) {
    	case 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    ```
    
    MinIO server also supports [NATS Streaming mode](http://nats.io/documentation/streaming/nats-streaming-intro/) that offers additional functionality like `At-least-once-delivery`, and `Publisher rate limiting`. To configure MinIO server to send notifications to NATS Streaming server, update the MinIO server configuration file as follows:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    func (nc *Controller) monitorNodeHealth(ctx context.Context) error {
    	start := nc.now()
    	defer func() {
    		updateAllNodesHealthDuration.Observe(time.Since(start.Time).Seconds())
    	}()
    
    	// We are listing nodes from local cache as we can tolerate some small delays
    	// comparing to state from etcd and there is eventual consistency anyway.
    	nodes, err := nc.nodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	t.testGetNotFound(valid.DeepCopyObject())
    	t.testGetMimatchedNamespace(valid.DeepCopyObject())
    	if !t.clusterScope {
    		t.testGetDifferentNamespace(valid.DeepCopyObject())
    	}
    }
    
    // Test listing objects.
    func (t *Tester) TestList(valid runtime.Object, assignFn AssignFunc) {
    	t.testListNotFound(assignFn)
    	t.testListFound(valid.DeepCopyObject(), assignFn)
    	t.testListMatchLabels(valid.DeepCopyObject(), assignFn)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. 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)
  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