Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for untainer (5.38 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
            container.addLater(provider3)
    
            // Realize all object of type `type`
            toList(container.withType(type))
    
            when:
            def didRemoved1 = container.remove(provider1)
    
            then:
            didRemoved1
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // refresh logger in case container got customized by spy
            slf4jLogger = slf4jLoggerFactory.getLogger(this.getClass().getName());
    
            maven = container.lookup(Maven.class);
    
            executionRequestPopulator = container.lookup(MavenExecutionRequestPopulator.class);
    
            modelProcessor = createModelProcessor(container);
    
            configurationProcessors = container.lookupMap(ConfigurationProcessor.class);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. 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)
Back to top