Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,625 for containerB (0.45 sec)

  1. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    			for pod := range tc.assignments {
    				for container, blocks := range tc.assignments[pod] {
    					state.SetMemoryBlocks(pod, container, blocks)
    					assert.Equal(t, blocks, state.GetMemoryBlocks(pod, container), "memory block inconsistent")
    
    					state.Delete(pod, container)
    					assert.Nil(t, state.GetMemoryBlocks(pod, container), "deleted container still existing in state")
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  2. pkg/api/v1/resource/helpers.go

    }
    
    // findContainerInPod finds a container by its name in the provided pod
    func findContainerInPod(pod *v1.Pod, containerName string) (*v1.Container, error) {
    	for _, container := range pod.Spec.Containers {
    		if container.Name == containerName {
    			return &container, nil
    		}
    	}
    	for _, container := range pod.Spec.InitContainers {
    		if container.Name == containerName {
    			return &container, nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption_test.go

    					st.MakeContainer().Name("container1").Obj(),
    				}).Obj(),
    				st.MakePod().Name("p3.1").UID("p3.1").Node("node3").Priority(midPriority).Containers([]v1.Container{
    					st.MakeContainer().Name("container1").Obj(),
    					st.MakeContainer().Name("container2").Obj(),
    					st.MakeContainer().Name("container3").Obj(),
    				}).Obj(),
    			},
    			expected: "node2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. pkg/api/pod/warnings_test.go

    			}},
    			expected: []string{
    				`spec.containers[0].ports[2]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[0]`,
    				`spec.containers[1].ports[0]: duplicate port definition with spec.containers[0].ports[2]`,
    				`spec.containers[1].ports[1]: duplicate port definition with spec.containers[0].ports[0]`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. build/release-in-a-container.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Check and error if not "in-a-container"
    if [[ ! -f /.dockerenv ]]; then
      echo
      echo "'make release-in-a-container' can only be used from a docker container."
      echo
      exit 1
    fi
    
    # Other dependencies: Your container should contain docker
    if ! type -p docker >/dev/null 2>&1; then
      echo
      echo "'make release-in-a-container' requires a container with" \
           "docker installed."
      echo
      exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:31:15 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    			return false
    		}
    	}
    	return true
    }
    
    // HashContainer returns the hash of the container. It is used to compare
    // the running container with its desired spec.
    // Note: remember to update hashValues in container_hash_test.go as well.
    func HashContainer(container *v1.Container) uint64 {
    	hash := fnv.New32a()
    	containerJSON, _ := json.Marshal(pickFieldsToHash(container))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/container.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    
    	<component class="org.lastaflute.di.naming.StyledNamingConvention">
    	</component>
    
    	<!-- Container -->
    	<component name="crawlerContainer"
    		class="org.codelibs.fess.crawler.container.LastaCrawlerContainer">
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 418 bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	TTY                      *bool                                     `json:"tty,omitempty"`
    }
    
    // ContainerApplyConfiguration constructs an declarative configuration of the Container type for use with
    // apply.
    func Container() *ContainerApplyConfiguration {
    	return &ContainerApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    			expectedError:         fmt.Errorf("pod must not contain any HostProcess containers if Pod's WindowsOptions.HostProcess is set to false"),
    		},
    		{
    			name: "Pod's security context doesn't specify HostProcess containers but Container's security context does",
    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    				Containers: []v1.Container{{
    					Name: containerName,
    					SecurityContext: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/only-proxy-container.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top