Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 431 for container1 (0.28 sec)

  1. pkg/apis/core/v1/conversion.go

    	"pod.beta.kubernetes.io/init-containers":          true,
    	"pod.alpha.kubernetes.io/init-containers":         true,
    	"pod.beta.kubernetes.io/init-container-statuses":  true,
    	"pod.alpha.kubernetes.io/init-container-statuses": true,
    }
    
    // dropInitContainerAnnotations returns a copy of the annotations with init container annotations removed,
    // or the original annotations if no init container annotations were present.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

    // attribute already exists with a different value, returns an error.
    template <typename ContainerT,
              typename = typename std::enable_if<
                  std::is_same<mlir::Type, decltype(*std::declval<ContainerT>()
                                                         .begin())>::value>::type>
    Status SetTypeAttribute(absl::string_view name, ContainerT types,
                            AttrValueMap* values) {
      AttrValue value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pkg/apis/batch/types.go

    	// Restricts the check for exit codes to the container with the
    	// specified name. When null, the rule applies to all containers.
    	// When specified, it should match one the container or initContainer
    	// names in the pod template.
    	// +optional
    	ContainerName *string
    
    	// Represents the relationship between the container exit code(s) and the
    	// specified values. Containers completed with success (exit code 0) are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/storage/storage_test.go

    			},
    			ManualSelector: newBool(true),
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. cluster/gce/windows/smoke-test.sh

    }
    
    function test_windows_node_to_windows_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    # TODO(pjh): this test failed for me once with
    #   error: unable to upgrade connection: container not found ("nettest")
    # Maybe the container crashed for some reason? Investigate if it happens more.
    #
    # TODO(pjh): another one-time failure:
    #   error: unable to upgrade connection: Authorization error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// - In: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    	//   by the 'containerName' field) is in the set of specified values.
    	// - NotIn: the requirement is satisfied if at least one container exit code
    	//   (might be multiple if there are multiple containers not restricted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	for _, p := range paths {
    		namespace, _, pod, container, err := cluster2.ParsePath(p)
    		if err != nil {
    			log.Error(err.Error())
    			continue
    		}
    
    		cp := params.SetNamespace(namespace).SetPod(pod).SetContainer(container)
    		proxyDir := archive.ProxyOutputPath(tempDir, namespace, pod)
    		switch {
    		case common.IsProxyContainer(params.ClusterVersion, container):
    			if !ambient.IsZtunnelPod(client, pod, namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/volumes.go

    	defaultFlexvolumeDirVolumePath = "/usr/libexec/kubernetes/kubelet-plugins/volume/exec"
    )
    
    // caCertsExtraVolumePaths specifies the paths that can be conditionally mounted into the apiserver and controller-manager containers
    // as /etc/ssl/certs might be or contain a symlink to them. It's a variable since it may be changed in unit testing. This var MUST
    // NOT be changed in normal codepaths during runtime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. pkg/registry/batch/cronjob/strategy_test.go

    	"k8s.io/utils/ptr"
    )
    
    var (
    	validPodTemplateSpec = api.PodTemplateSpec{
    		Spec: api.PodSpec{
    			RestartPolicy: api.RestartPolicyOnFailure,
    			DNSPolicy:     api.DNSClusterFirst,
    			Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    		},
    	}
    	validCronjobSpec = batch.CronJobSpec{
    		Schedule:          "5 5 * * ?",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cluster/gce/config-test.sh

    export CONTAINER_RUNTIME_ENDPOINT=${KUBE_CONTAINER_RUNTIME_ENDPOINT:-unix:///run/containerd/containerd.sock}
    export CONTAINER_RUNTIME_NAME=${KUBE_CONTAINER_RUNTIME_NAME:-containerd}
    export LOAD_IMAGE_COMMAND=${KUBE_LOAD_IMAGE_COMMAND:-ctr -n=k8s.io images import}
    export LOG_DUMP_SYSTEMD_SERVICES=${LOG_DUMP_SYSTEMD_SERVICES:-containerd}
    export CONTAINER_RUNTIME_TEST_HANDLER="true"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top