Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 223 for container_1 (0.22 sec)

  1. pkg/kubelet/cm/cpumanager/state/state_test.go

    package state
    
    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/utils/cpuset"
    )
    
    func TestClone(t *testing.T) {
    	expect := ContainerCPUAssignments{
    		"pod": map[string]cpuset.CPUSet{
    			"container1": cpuset.New(4, 5, 6),
    			"container2": cpuset.New(1, 2, 3),
    		},
    	}
    	actual := expect.Clone()
    	if &expect == &actual || !reflect.DeepEqual(expect, actual) {
    		t.Fail()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 935 bytes
    - Viewed (0)
  2. pkg/kubelet/metrics/collectors/log_metrics.go

    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    )
    
    var (
    	descLogSize = metrics.NewDesc(
    		"kubelet_container_log_filesystem_used_bytes",
    		"Bytes used by the container's logs on the filesystem.",
    		[]string{
    			"uid",
    			"namespace",
    			"pod",
    			"container",
    		}, nil,
    		metrics.ALPHA,
    		"",
    	)
    )
    
    type logMetricsCollector struct {
    	metrics.BaseStableCollector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaStoreTest.groovy

            when:
            def cl = new GroovyClassLoader()
            addClass(cl, "@${Managed.name} interface Thing {}")
            addClass(cl, "@${Managed.name} interface Container1 { ${ModelSet.name}<Thing> getThings() }")
            addClass(cl, "@${Managed.name} interface Container2 { ${ModelSet.name}<Thing> getThings() }")
    
            then:
            store.cache.size() == 4
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_linux_test.go

    			}
    
    			assert.Equal(t, tc.expectedMounts, mounts, "mounts of container %+v", tc.container)
    		})
    	}
    }
    
    func TestMakeBlockVolumes(t *testing.T) {
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	testCases := map[string]struct {
    		container       v1.Container
    		podVolumes      kubecontainer.VolumeMap
    		expectErr       bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/main/resources/lasta_di.properties

    # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
    # Lasta Di properties, you can set container's options
    # _/_/_/_/_/_/_/_/_/_/
    
    # location of smart-deploy mode e.g. maihama_env.properties: lasta_di.smart.deploy.mode
    smart.deploy.mode.location = fess_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.app
    
    # script engine
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Apr 05 21:04:36 UTC 2019
    - 457 bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/security_context_others_test.go

    			},
    			uid:  &anyUser,
    			fail: false,
    		},
    		{
    			desc: "Pass if container's user and image's user aren't set and RunAsNonRoot is true",
    			sc: &v1.SecurityContext{
    				RunAsNonRoot: &runAsNonRootTrue,
    			},
    			fail: false,
    		},
    	} {
    		pod.Spec.Containers[0].SecurityContext = test.sc
    		err := verifyRunAsNonRoot(pod, &pod.Spec.Containers[0], test.uid, test.username)
    		if test.fail {
    			assert.Error(t, err, test.desc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 10:06:54 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/helpers.go

    			klog.InfoS("No PodSandBox found for the container", "podSandboxId", c.PodSandboxId, "containerName", c.Metadata.Name, "containerId", c.Id)
    			continue
    		}
    		podUID := podSandboxMap[c.PodSandboxId]
    		containerMap.Add(podUID, c.Metadata.Name, c.Id)
    		if c.State == runtimeapi.ContainerState_CONTAINER_RUNNING {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top