Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 173 for Managed (0.32 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Gradle uses runtime class decoration to implement abstract methods as long as the object is instantiated via `ObjectFactory` or some other automatic mechanism (like <<custom_gradle_types.adoc#managed_properties,managed properties>>).
    Those methods should never be directly implemented.
    
    ==== Wrapper task configuration
    If `gradle-wrapper.properties` contains the `distributionSha256Sum` property, you must specify a sum.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "outbound|443||cert-manager-istio-csr.cert-manager.svc.cluster.local",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    				t.Errorf("Could not create the Memory Manager. Expected error: '%v', but got: '%v'",
    					testCase.expectedError, err)
    			}
    
    			if testCase.expectedError == nil {
    				if mgr != nil {
    					rawMgr := mgr.(*manager)
    					if !reflect.DeepEqual(rawMgr.policy.Name(), string(testCase.policyName)) {
    						t.Errorf("Could not create the Memory Manager. Expected policy name: %v, but got: %v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    )
    
    const (
    	testResourceName = "fake-domain/resource"
    )
    
    func newWrappedManagerImpl(socketPath string, manager *ManagerImpl) *wrappedManagerImpl {
    	w := &wrappedManagerImpl{
    		ManagerImpl: manager,
    		callback:    manager.genericDeviceUpdateCallback,
    	}
    	w.socketdir, _ = filepath.Split(socketPath)
    	w.server, _ = plugin.NewServer(socketPath, w, w)
    	return w
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    }
    
    func generateRandomMessage() string {
    	return strconv.Itoa(rand.Int())
    }
    
    func getRandomPodStatus() v1.PodStatus {
    	return v1.PodStatus{
    		Message: generateRandomMessage(),
    	}
    }
    
    func verifyActions(t *testing.T, manager *manager, expectedActions []core.Action) {
    	t.Helper()
    	manager.consumeUpdates()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top