Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for untainer (0.26 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	ephemeralContainer *v1.EphemeralContainer
    }
    
    func containerStartSpec(c *v1.Container) *startSpec {
    	return &startSpec{container: c}
    }
    
    func ephemeralContainerStartSpec(ec *v1.EphemeralContainer) *startSpec {
    	return &startSpec{
    		container:          (*v1.Container)(&ec.EphemeralContainerCommon),
    		ephemeralContainer: ec,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    )
    
    // containerToKillInfo contains necessary information to kill a container.
    type containerToKillInfo struct {
    	// The spec of the container.
    	container *v1.Container
    	// The name of the container.
    	name string
    	// The message indicates why the container will be killed.
    	message string
    	// The reason is a clearer source of info on why a container will be killed
    	// TODO: replace message with reason?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The k8s lifecycle hooks definition (pod.spec.containers.lifecycle) for the proxy container.
      // More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks
      k8s.io.api.core.v1.Lifecycle lifecycle = 36;
    
      // Controls if sidecar is injected at the front of the container list and blocks the start of the other containers until the proxy is ready
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    					},
    				},
    				InitContainers: []api.Container{{Name: "init"}},
    				Containers:     []api.Container{{Name: "ctr"}},
    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Len(t, pod.Annotations, 0)
    		},
    	}, {
    		description: "Container security context not nil",
    		pod: &api.Pod{
    			Spec: api.PodSpec{
    				Containers: []api.Container{{
    					Name:            "ctr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    	createdAt      int64
    	state          runtimeapi.ContainerState
    }
    
    // makeAndSetFakePod is a helper function to create and set one fake sandbox for a pod and
    // one fake container for each of its container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
        %1 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
        %2 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    	t.Logf("we expect the container statuses to have changed to terminated")
    	newStatus := expectPodStatus(t, syncer, testPod)
    	for _, container := range newStatus.ContainerStatuses {
    		assert.False(t, container.State.Terminated == nil, "expected containers to be terminated")
    	}
    	for _, container := range newStatus.InitContainerStatuses[:2] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults_test.go

    		}
    	}
    }
    
    type InitContainerValidator func(got, expected *v1.Container) error
    
    func TestSetDefaultReplicationControllerInitContainers(t *testing.T) {
    	assertEnvFieldRef := func(got, expected *v1.Container) error {
    		if len(got.Env) != len(expected.Env) {
    			return fmt.Errorf("different number of env: got <%v>, expected <%v>", len(got.Env), len(expected.Env))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    func makeFakeContainerStatsStrictlyFromCRI(seed int, container *critest.FakeContainer, imageFsMountpoint string) *runtimeapi.ContainerStats {
    	containerStats := &runtimeapi.ContainerStats{
    		Attributes: &runtimeapi.ContainerAttributes{
    			Id:       container.ContainerStatus.Id,
    			Metadata: container.ContainerStatus.Metadata,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				// Add existing pod + volume
    				existingContainer := container
    				existingContainer.SecurityContext.SELinuxOptions = tc.existingContainerSELinuxOpts
    				existingPod = createPodWithVolume("dswp-old-pod", "dswp-test-volume-name", "file-bound", []v1.Container{existingContainer})
    				fakePodManager.AddPod(existingPod)
    				dswp.findAndAddNewPods()
    			}
    
    			newContainer := container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top