Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for Managed (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				ContainerPath:  terminationMessagePath,
    				SelinuxRelabel: selinuxRelabel,
    			})
    		}
    	}
    
    	return volumeMounts
    }
    
    // getKubeletContainers lists containers managed by kubelet.
    // The boolean parameter specifies whether returns all containers including
    // those already exited and dead containers (used for garbage collection).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "Unknown tag directive.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidEncryptionMethod: {
    		Code:           "InvalidArgument",
    		Description:    "Server Side Encryption with AWS KMS managed key requires HTTP header x-amz-server-side-encryption : aws:kms",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncompatibleEncryptionMethod: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	work.nwait = ^uint32(0)
    }
    
    // gcBgMarkWorkerNode is an entry in the gcBgMarkWorkerPool. It points to a single
    // gcBgMarkWorker goroutine.
    type gcBgMarkWorkerNode struct {
    	// Unused workers are managed in a lock-free stack. This field must be first.
    	node lfnode
    
    	// The g of this worker.
    	gp guintptr
    
    	// Release this m on park. This is used to communicate with the unlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    And as a last resort, you may be able to view the plugin's source code to find out what it does, but that shouldn't be necessary in the majority of cases.
    
    ==== Tasks
    
    Tasks are not managed through a container-based project extension, but they are part of a container that behaves in a similar way.
    This means that you can configure tasks in the same way as you do for source sets, as you can see in this example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    or migrate to link:jvm_test_suite_plugin.html[Test Suites], where these dependencies are managed automatically.
    
    ===== Test Suites
    
    Builds that use test suites will not be affected by this change.
    Test suites manage the test
    framework dependencies automatically and do not require dependencies to be explicitly declared.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    // HTTPS, and HTTP proxies (for either HTTP or HTTPS with CONNECT).
    //
    // By default, Transport caches connections for future re-use.
    // This may leave many open connections when accessing many hosts.
    // This behavior can be managed using [Transport.CloseIdleConnections] method
    // and the [Transport.MaxIdleConnsPerHost] and [Transport.DisableKeepAlives] fields.
    //
    // Transports should be reused instead of created as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    }
    
    // addHistory enqueues the DaemonSet that manages a ControllerRevision when the ControllerRevision is created
    // or when the controller manager is restarted.
    func (dsc *DaemonSetsController) addHistory(logger klog.Logger, obj interface{}) {
    	history := obj.(*apps.ControllerRevision)
    	if history.DeletionTimestamp != nil {
    		// On a restart of the controller manager, it's possible for an object to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. 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.
    	if got, want := manager.queue.Len(), 1; got != want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. staging/publishing/rules.yaml

          branch: release-1.30
        - repository: controller-manager
          branch: release-1.30
        - repository: component-helpers
          branch: release-1.30
        - repository: kms
          branch: release-1.30
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cloud-provider
      library: true
    - destination: kube-controller-manager
      branches:
      - name: master
        dependencies:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	runtimeHelper kubecontainer.RuntimeHelper
    
    	// Health check results.
    	livenessManager  proberesults.Manager
    	readinessManager proberesults.Manager
    	startupManager   proberesults.Manager
    
    	// If true, enforce container cpu limits with CFS quota support
    	cpuCFSQuota bool
    
    	// CPUCFSQuotaPeriod sets the CPU CFS quota period value, cpu.cfs_period_us, defaults to 100ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top