Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 223 for container_1 (0.21 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager.go

    func (m *manager) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	m.Lock()
    	defer m.Unlock()
    
    	m.containerMap.Add(string(pod.UID), container.Name, containerID)
    
    	// Since we know that each init container always runs to completion before
    	// the next container starts, we can safely remove references to any previously
    	// started init containers. This will free up the memory from these init containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	assert.Equal(imageFsInfo.Timestamp, containerfs.Time.Time)
    	assert.Equal(imageFsInfo.Available, *containerfs.AvailableBytes)
    	assert.Equal(imageFsInfo.Capacity, *containerfs.CapacityBytes)
    	assert.Equal(imageFsInfo.InodesFree, containerfs.InodesFree)
    	assert.Equal(imageFsInfo.Inodes, containerfs.Inodes)
    	assert.Equal(*imageFsInfo.Inodes-*imageFsInfo.InodesFree, *containerfs.InodesUsed)
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    func makeGCContainer(podName, containerName string, attempt int, createdAt int64, state runtimeapi.ContainerState) containerTemplate {
    	container := makeTestContainer(containerName, "test-image")
    	pod := makeTestPod(podName, "test-ns", podName, []v1.Container{container})
    	return containerTemplate{
    		pod:       pod,
    		container: &container,
    		attempt:   attempt,
    		createdAt: createdAt,
    		state:     state,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. fess-crawler-es/src/test/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 = maihama_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.crawler
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 479 bytes
    - Viewed (0)
  7. pkg/api/v1/resource/helpers.go

    	limits := reuseOrClearResourceList(opts.Reuse)
    
    	for _, container := range pod.Spec.Containers {
    		if opts.ContainerFn != nil {
    			opts.ContainerFn(container.Resources.Limits, podutil.Containers)
    		}
    		addResourceList(limits, container.Resources.Limits)
    	}
    
    	restartableInitContainerLimits := v1.ResourceList{}
    	initContainerLimits := v1.ResourceList{}
    	// init containers define the minimum of any resource
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 13:58:16 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. pkg/securitycontext/util.go

    	}
    
    	if containerSc.RunAsUser != nil {
    		effectiveSc.RunAsUser = new(int64)
    		*effectiveSc.RunAsUser = *containerSc.RunAsUser
    	}
    
    	if containerSc.RunAsGroup != nil {
    		effectiveSc.RunAsGroup = new(int64)
    		*effectiveSc.RunAsGroup = *containerSc.RunAsGroup
    	}
    
    	if containerSc.RunAsNonRoot != nil {
    		effectiveSc.RunAsNonRoot = new(bool)
    		*effectiveSc.RunAsNonRoot = *containerSc.RunAsNonRoot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/runtime_mock.go

    func (m *MockRuntime) DeleteContainer(ctx context.Context, containerID container.ContainerID) error {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "DeleteContainer", ctx, containerID)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // DeleteContainer indicates an expected call of DeleteContainer.
    func (mr *MockRuntimeMockRecorder) DeleteContainer(ctx, containerID any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        type: typeValue
      containerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
            message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top