Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for container_0 (0.12 sec)

  1. pkg/kubelet/pleg/generic.go

    }
    
    func getContainersFromPods(pods ...*kubecontainer.Pod) []*kubecontainer.Container {
    	cidSet := sets.New[string]()
    	var containers []*kubecontainer.Container
    	fillCidSet := func(cs []*kubecontainer.Container) {
    		for _, c := range cs {
    			cid := c.ID.ID
    			if cidSet.Has(cid) {
    				continue
    			}
    			cidSet.Insert(cid)
    			containers = append(containers, c)
    		}
    	}
    
    	for _, p := range pods {
    		if p == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. docs/docker/README.md

    ```sh
    docker ps -a
    ```
    
    `-a` flag makes sure you get all the containers (Created, Running, Exited). Then identify the `Container ID` from the output.
    
    ### Starting and Stopping Containers
    
    To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command.
    
    ```sh
    docker start <container_id>
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (2)
  3. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    	pod.UID = types.UID(podUID)
    	pod.Spec.Containers[0].Name = containerName
    
    	return pod
    }
    
    func makeMultiContainerPod(initCPUs, appCPUs []struct{ request, limit string }) *v1.Pod {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "pod",
    			UID:  "podUID",
    		},
    		Spec: v1.PodSpec{
    			InitContainers: []v1.Container{},
    			Containers:     []v1.Container{},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/security_context_windows.go

    			}
    			return nil
    		}
    	}
    	// Verify that if runAsUserName is NOT set for the pod and/or container that the default user for the container image is not set to 'ContainerAdministrator'
    	if len(username) > 0 && strings.EqualFold(username, windowsRootUserName) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 22:23:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. pkg/volume/util/selinux.go

    	if role == "" {
    		role = "object_r"
    	}
    
    	// opts is context of the *process* to run in a container. Translate
    	// process type "container_t" to file label type "container_file_t".
    	// (The rest of the context is the same for processes and files).
    	fileType := opts.Type
    	if fileType == "" || fileType == "container_t" {
    		fileType = "container_file_t"
    	}
    
    	level := opts.Level
    	if level == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 14:40:21 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

        status: "True"
        type: ContainersReady
      - lastProbeTime: null
        lastTransitionTime: "2021-08-20T14:35:31Z"
        status: "True"
        type: PodScheduled
      containerStatuses:
      - containerID: containerd://f21ec303caca266fa4b81ebe6c210b5aa2b8ea6a262d8038db2c4f57db127187
        image: image-name:tag-name
        imageID: imageid@sha256:8e2a7eaa7e6b1ede58d6361d0058a391260a46f0290b7f0368b709494e9e36bf
        lastState: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  7. src/syscall/exec_linux_test.go

    	cmd := testenv.Command(t, "whoami")
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Cloneflags: syscall.CLONE_NEWUSER,
    		UidMappings: []syscall.SysProcIDMap{
    			{ContainerID: 0, HostID: uid, Size: 1},
    		},
    		GidMappings: []syscall.SysProcIDMap{
    			{ContainerID: 0, HostID: gid, Size: 1},
    		},
    		GidMappingsEnableSetgroups: setgroups,
    	}
    	return cmd
    }
    
    func TestCloneNEWUSERAndRemap(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cadvisor/helpers_linux.go

    }
    
    // ContainerFsInfoLabel returns the container fs label for the configured runtime.
    // For remote runtimes, it handles addition runtimes natively understood by cAdvisor.
    func (i *imageFsInfoProvider) ContainerFsInfoLabel() (string, error) {
    	if detectCrioWorkaround(i) {
    		return cadvisorfs.LabelCrioContainers, nil
    	}
    	return "", fmt.Errorf("no containerfs label for configured runtime")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager_stub.go

    limitations under the License.
    */
    
    package logs
    
    import "context"
    
    type containerLogManagerStub struct{}
    
    func (*containerLogManagerStub) Start() {}
    
    func (*containerLogManagerStub) Clean(ctx context.Context, containerID string) error {
    	return nil
    }
    
    // NewStubContainerLogManager returns an empty ContainerLogManager which does nothing.
    func NewStubContainerLogManager() ContainerLogManager {
    	return &containerLogManagerStub{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 968 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-32/plexus-containers-1.0-alpha-32.pom

      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
      <version>1.0-alpha-32</version>
      <modules>
        <module>plexus-component-api</module>
        <module>plexus-container-default</module>
      </modules>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-32</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top