Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,625 for container1 (0.27 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * test method needs to create multiple containers while retaining the ability to use {@link
       * #expectContents(Object[]) expectContents(E...)} and other convenience methods. The creation of
       * multiple containers in a single method is discouraged in most cases, but it is vital to the
       * iterator tests.
       *
       * @return the new container instance
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    func (m *kubeGenericRuntimeManager) generateLinuxContainerResources(pod *v1.Pod, container *v1.Container, enforceMemoryQoS bool) *runtimeapi.LinuxContainerResources {
    	// set linux container resources
    	var cpuRequest *resource.Quantity
    	if _, cpuRequestExists := container.Resources.Requests[v1.ResourceCPU]; cpuRequestExists {
    		cpuRequest = container.Resources.Requests.Cpu()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

    kind: ConfigMap
    apiVersion: v1
    data:
      containers.input.conf: |-
        # This configuration file for Fluentd is used
        # to watch changes to Docker log files that live in the
        # directory /var/lib/docker/containers/ and are symbolically
        # linked to from the /var/log/containers directory using names that capture the
        # pod name and container name. These logs are then submitted to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    getTestPath(String, String); public static String getBasedir(); public String getTestConfiguration(); public static String getTestConfiguration(Class); } META-INF/maven/org.codehaus.plexus/plexus-container-default/pom.xml 4.0.0 org.codehaus.plexus plexus-containers 1.0-alpha-32 plexus-container-default Default Plexus Container 1.0-alpha-32 maven-surefire-plugin once **/Test*.java **/Abstract*.java shade-maven-plugin org.codehaus.mojo 1.0-alpha-9 package shade classworlds:classworlds junit:junit jmock:jmock ...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    	}
    
    	// Number of running containers to keep.
    	keepCount := 0
    	// check the status of containers.
    	for idx, container := range pod.Spec.Containers {
    		containerStatus := podStatus.FindContainerStatusByName(container.Name)
    
    		// Call internal container post-stop lifecycle hook for any non-running container so that any
    		// allocated cpus are released immediately. If the container is restarted, cpus will be re-allocated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    getTestPath(String, String); public static String getBasedir(); public String getTestConfiguration(); public static String getTestConfiguration(Class); } META-INF/maven/org.codehaus.plexus/plexus-container-default/pom.xml 4.0.0 org.codehaus.plexus plexus-containers 1.0-alpha-16 plexus-container-default Default Plexus Container 1.0-alpha-16 maven-surefire-plugin once **/Test*.java **/Abstract*.java maven-assembly-plugin jar-with-dependencies org.codehaus.plexus plexus-component-api org.codehaus.plexus plexus-utils...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    // Pod. Ephemeral containers may not be removed or restarted.
    message EphemeralContainer {
      // Ephemeral containers have all of the fields of Container, plus additional fields
      // specific to ephemeral containers. Fields in common with Container are in the
      // following inlined struct so than an EphemeralContainer may easily be converted
      // to a Container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    A container image is comparable to the **program** file and contents, e.g. `python` and some file `main.py`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider.go

    // removeTerminatedContainers removes all terminated containers since they should
    // not be used for usage calculations.
    func removeTerminatedContainers(containers []*runtimeapi.Container) []*runtimeapi.Container {
    	containerMap := make(map[containerID][]*runtimeapi.Container)
    	// Sort order by create time
    	sort.Slice(containers, func(i, j int) bool {
    		return containers[i].CreatedAt < containers[j].CreatedAt
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// TODO: Consolidate the logic here with kuberuntime.GetContainerLogs, here we convert container name to containerID,
    	// but inside kuberuntime we convert container id back to container name and restart count.
    	// TODO: After separate container log lifecycle management, we should get log based on the existing log files
    	// instead of container status.
    	containerID, err := kl.validateContainerLogStatus(pod.Name, &podStatus, containerName, logOptions.Previous)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top