Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for qgroups (0.12 sec)

  1. pkg/kubelet/kubelet_pods.go

    			}
    			continue
    		}
    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    		// https://github.com/golang/go/wiki/SliceTricks#filter-in-place
    		for _, bucketInfo := range bucketsInfo {
    			if globalIAMSys.IsAllowed(policy.Args{
    				AccountName:     cred.AccessKey,
    				Groups:          cred.Groups,
    				Action:          policy.ListBucketAction,
    				BucketName:      bucketInfo.Name,
    				ConditionValues: getConditionValues(r, "", cred),
    				IsOwner:         owner,
    				ObjectName:      "",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    			kl.configMapManager.RegisterPod(pod)
    		}
    	}
    
    	// Create Cgroups for the pod and apply resource parameters
    	// to them if cgroups-per-qos flag is enabled.
    	pcm := kl.containerManager.NewPodContainerManager()
    	// If pod has already been terminated then we need not create
    	// or update the pod's cgroup
    	// TODO: once context cancellation is added this check can be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	watchlist "k8s.io/client-go/util/watchlist"
    	"k8s.io/klog/v2"
    )
    
    // CustomResourceDefinitionsGetter has a method to return a CustomResourceDefinitionInterface.
    // A group's client should implement this interface.
    type CustomResourceDefinitionsGetter interface {
    	CustomResourceDefinitions() CustomResourceDefinitionInterface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	consistencydetector "k8s.io/client-go/util/consistencydetector"
    	watchlist "k8s.io/client-go/util/watchlist"
    	"k8s.io/klog/v2"
    )
    
    // ExamplesGetter has a method to return a ExampleInterface.
    // A group's client should implement this interface.
    type ExamplesGetter interface {
    	Examples(namespace string) ExampleInterface
    }
    
    // ExampleInterface has methods to work with Example resources.
    type ExampleInterface interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	watchlist "k8s.io/client-go/util/watchlist"
    	"k8s.io/klog/v2"
    )
    
    // CustomResourceDefinitionsGetter has a method to return a CustomResourceDefinitionInterface.
    // A group's client should implement this interface.
    type CustomResourceDefinitionsGetter interface {
    	CustomResourceDefinitions() CustomResourceDefinitionInterface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	fakeContainerManager := testKubelet.fakeContainerManager
    	fakeContainerManager.PodContainerManager.AddPodFromCgroups(pod) // add pod to mock cgroup
    	fakeRuntime.PodList = []*containertest.FakePod{
    		{Pod: pod},
    	}
    	kubelet := testKubelet.kubelet
    	kubelet.cgroupsPerQOS = true // enable cgroupsPerQOS to turn on the cgroups cleanup
    
    	// HandlePodCleanups gets called every 2 seconds within the Kubelet's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top