Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,625 for containerB (0.28 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    		InitContainers: []v1.Container{
    			{Name: "containerX"},
    		},
    		Containers: []v1.Container{
    			{Name: "containerA"},
    			{Name: "containerB"},
    		},
    		RestartPolicy: v1.RestartPolicyAlways,
    	}
    
    	tests := []struct {
    		pod    *v1.Pod
    		status v1.PodPhase
    		test   string
    	}{
    		{&v1.Pod{Spec: desiredState, Status: v1.PodStatus{}}, v1.PodPending, "empty, waiting"},
    		{
    			&v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    		sandbox0, sandbox1, sandbox2, sandbox3, sandbox4, sandbox5, sandbox6,
    	})
    	fakeRuntimeService.SetFakeContainers([]*critest.FakeContainer{
    		container0, container1, container2, container3, container4, container5, container6, container7, container8, container9,
    	})
    	fakeRuntimeService.SetFakeContainerStats([]*runtimeapi.ContainerStats{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. .github/workflows/containers.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Container Tests
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Mar 23 12:00:11 UTC 2024
    - 911 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/DefaultMutableAttributeContainerTest.groovy

            def container = new DefaultMutableAttributeContainer(attributesFactory)
    
            then:
            container.empty
            container.keySet().empty
            !container.contains(thing)
            container.getAttribute(thing) == null
    
            when:
            container.attribute(thing, "thing")
    
            then:
            !container.empty
            container.keySet() == [thing] as Set
            container.contains(thing)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 08 14:34:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kube/inject/testdata/inject/only-proxy-container.yaml

      template:
        metadata:
          labels:
            istio: ingressgateway
        spec:
          # Ensure we can have istio-proxy as the only container. This isn't particularly useful as a sidecar
          # but will be used when we have a dedicated template to run a pod as a Gateway
          containers:
          - name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 23:55:05 UTC 2020
    - 474 bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/policy_static_test.go

    				hugepages1Gi:      4 * gb,
    			},
    		},
    		{
    			description: "maximum resources of init containers > total resources of long running containers, including restartable init containers",
    			pod: getPodWithInitContainers(
    				"",
    				[]v1.Container{
    					{
    						Name: "container1",
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  8. 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)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom

      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
      <version>1.0-alpha-16</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-16</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:34:51 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/multi-container.yaml.injected

          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: name1
            kubectl.kubernetes.io/default-logs-container: name1
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top