Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for colgroup (0.17 sec)

  1. src/syscall/exec_linux.go

    	tls        uint64 // Location of new TLS
    	setTID     uint64 // Pointer to a pid_t array (since Linux 5.5)
    	setTIDSize uint64 // Number of elements in set_tid (since Linux 5.5)
    	cgroup     uint64 // File descriptor for target cgroup of child (since Linux 5.7)
    }
    
    // forkAndExecInChild1 implements the body of forkAndExecInChild up to
    // the parent's post-fork path. This is a separate function so we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.SystemReservedCgroup, "system-reserved-cgroup", c.SystemReservedCgroup, "Absolute name of the top level cgroup that is used to manage non-kubernetes components for which compute resources...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/types.go

    	SystemCgroups string
    	// CgroupRoot is the root cgroup to use for pods.
    	// If CgroupsPerQOS is enabled, this is the root of the QoS cgroup hierarchy.
    	CgroupRoot string
    	// Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes
    	// And all Burstable and BestEffort pods are brought up under their
    	// specific top level QoS cgroup.
    	CgroupsPerQOS bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/provider_test.go

    	offsetMemSwapUsageBytes
    )
    
    var (
    	timestamp    = time.Now()
    	creationTime = timestamp.Add(-5 * time.Minute)
    )
    
    func TestGetCgroupStats(t *testing.T) {
    	const (
    		cgroupName        = "test-cgroup-name"
    		containerInfoSeed = 1000
    		updateStats       = false
    	)
    
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    	var (
    		mockCadvisor     = cadvisortest.NewMockInterface(mockCtrl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_getters.go

    func (kl *Kubelet) GetPodByName(namespace, name string) (*v1.Pod, bool) {
    	return kl.podManager.GetPodByName(namespace, name)
    }
    
    // GetPodByCgroupfs provides the pod that maps to the specified cgroup, as well
    // as whether the pod was found.
    func (kl *Kubelet) GetPodByCgroupfs(cgroupfs string) (*v1.Pod, bool) {
    	pcm := kl.containerManager.NewPodContainerManager()
    	if result, podUID := pcm.IsPodCgroup(cgroupfs); result {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. build/common.sh

        docker_run_opts+=(
          --env "GOLDFLAGS=${GOLDFLAGS:-}"
        )
      fi
    
      if [[ -n "${DOCKER_CGROUP_PARENT:-}" ]]; then
        kube::log::status "Using ${DOCKER_CGROUP_PARENT} as container cgroup parent"
        docker_run_opts+=(--cgroup-parent "${DOCKER_CGROUP_PARENT}")
      fi
    
      # If we have stdin we can run interactive.  This allows things like 'shell.sh'
      # to work.  However, if we run this way and don't have stdin, then it ends up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void enablesTogglingJavadocAndSourcesOff() {
            //given
            def repoDir = file("repo")
            def module = maven(repoDir).module("coolGroup", "niceArtifact")
            module.artifact(classifier: 'sources')
            module.artifact(classifier: 'javadoc')
            module.publish()
    
            //when
            runIdeaTask """
    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap.go

    	// This is the spec for the volume that this plugin wraps.
    	return volume.Spec{
    		// This should be on a tmpfs instead of the local disk; the problem is
    		// charging the memory for the tmpfs to the right cgroup.  We should make
    		// this a tmpfs when we can do the accounting correctly.
    		Volume: &v1.Volume{VolumeSource: v1.VolumeSource{EmptyDir: &v1.EmptyDirVolumeSource{}}},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    func (m *kubeGenericRuntimeManager) generatePodSandboxConfig(pod *v1.Pod, attempt uint32) (*runtimeapi.PodSandboxConfig, error) {
    	// TODO: deprecating podsandbox resource requirements in favor of the pod level cgroup
    	// Refer https://github.com/kubernetes/kubernetes/issues/29871
    	podUID := string(pod.UID)
    	podSandboxConfig := &runtimeapi.PodSandboxConfig{
    		Metadata: &runtimeapi.PodSandboxMetadata{
    			Name:      pod.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/metrics.go

    	// CgroupManagerDuration is a Histogram that tracks the duration (in seconds) it takes for cgroup manager operations to complete.
    	// Broken down by method.
    	CgroupManagerDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           CgroupManagerOperationsKey,
    			Help:           "Duration in seconds for cgroup manager operations. Broken down by method.",
    			Buckets:        metrics.DefBuckets,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top