Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for Allocate (1.25 sec)

  1. cmd/bucket-lifecycle.go

    	}
    }
    
    // globalExpiryState is the per-node instance which manages all ILM expiry tasks.
    var globalExpiryState *expiryState
    
    // newExpiryState creates an expiryState with buffered channels allocated for
    // each ILM expiry task type.
    func newExpiryState(ctx context.Context, objAPI ObjectLayer, n int) *expiryState {
    	es := &expiryState{
    		ctx:    ctx,
    		objAPI: objAPI,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    	}{
    		{
    			name:                      "egress tcp with auto allocated address",
    			services:                  services,
    			sidecar:                   sidecarConfig,
    			numListenersOnServicePort: 1,
    			useAutoAllocatedAddress:   true,
    		},
    		{
    			name:                      "egress tcp and port with auto allocated address",
    			services:                  services,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	KubeletInUserNamespace featuregate.Feature = "KubeletInUserNamespace"
    
    	// owner: @moshe010
    	// alpha: v1.27
    	//
    	// Enable POD resources API to return resources allocated by Dynamic Resource Allocation
    	KubeletPodResourcesDynamicResources featuregate.Feature = "KubeletPodResourcesDynamicResources"
    
    	// owner: @moshe010
    	// alpha: v1.27
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		Namespace: "",
    	}
    	testClusterDNSDomain := "TEST"
    	kl.dnsConfigurer = dns.NewConfigurer(recorder, nodeRef, nil, nil, testClusterDNSDomain, "")
    
    	// pod requiring adjustedResource can be successfully allocated because updatePluginResourcesFunc
    	// adjusts node.allocatableResource for this resource to a sufficient value.
    	fittingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Enabled use of pods with volumes and user namespaces. The feature gate...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    		{Name: "AllocationMode", Type: "string", Description: resourcev1alpha2.ResourceClaimSpec{}.SwaggerDoc()["allocationMode"]},
    		{Name: "State", Type: "string", Description: "A summary of the current state (allocated, pending, reserved, etc.)."},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(resourceClaimColumnDefinitions, printResourceClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	attrs := &lifecycle.PodAdmitAttributes{Pod: pod, OtherPods: pods}
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// Use allocated resources values from checkpoint store (source of truth) to determine fit
    		otherPods := make([]*v1.Pod, 0, len(pods))
    		for _, p := range pods {
    			op := p.DeepCopy()
    			kl.updateContainerResourceAllocation(op)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    		}
    		// Only switch if we need a newer toolchain.
    		// Otherwise leave the cs.err for reporting later.
    		if sw.NeedSwitch() {
    			sw.Switch(ctx)
    			// If NeedSwitch is true and Switch returns, Switch has failed to locate a newer toolchain.
    			// It printed the errors along with one more about not finding a good toolchain.
    			base.Exit()
    		}
    
    		for _, q := range queries {
    			unresolved := q.candidates[:0]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. samples/addons/grafana.yaml

     go_memstats_heap_inuse_bytes{app=\"istiod\"}\n)","legendFormat":"Heap (In Use) ({{pod}})"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (pod) (\n  go_memstats_heap_alloc_bytes{app=\"istiod\"}\n)","legendFormat":"Heap (Allocated) ({{pod}})"}],"title":"Memory Usage","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Details about memory allocations","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","showPo...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

        * This was reported internally by [@rushilsrivastava](https://github.com/rushilsrivastava) as a memory leak when the server had unhandled exceptions that would produce internal server errors, the memory allocated before that point would not be released.
        * Read the new docs: [Dependencies with `yield` and `except`](https://fastapi.tiangolo.com/tutorial/dependencies/dependencies-with-yield/#dependencies-with-yield-and-except).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top