Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 163 for Containers (0.58 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		Parallelism: &one,
    		Completions: &one,
    		Template: v1.PodTemplateSpec{
    			ObjectMeta: metav1.ObjectMeta{
    				Labels: map[string]string{
    					"foo": "bar",
    				},
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Image: "foo/bar"},
    				},
    			},
    		},
    	}
    }
    
    func justASecondBeforeTheHour() time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T09:59:59Z")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    		allErrs = append(allErrs, field.TooMany(rulesPath, len(spec.PodFailurePolicy.Rules), maxPodFailurePolicyRules))
    	}
    	containerNames := sets.NewString()
    	for _, containerSpec := range spec.Template.Spec.Containers {
    		containerNames.Insert(containerSpec.Name)
    	}
    	for _, containerSpec := range spec.Template.Spec.InitContainers {
    		containerNames.Insert(containerSpec.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history_test.go

    			},
    			Replicas: pointer.Int32(int32(replicas)),
    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: labels,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Name:  "nginx",
    							Image: "nginx",
    							VolumeMounts: []v1.VolumeMount{
    								{Name: "datadir", MountPath: "/tmp/"},
    								{Name: "home", MountPath: "/home"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]) {
      return ValuesIn(array, array + N);
    }
    
    template <class Container>
    internal::ParamGenerator<typename Container::value_type> ValuesIn(
        const Container& container) {
      return ValuesIn(container.begin(), container.end());
    }
    
    // Values() allows generating tests from explicitly specified list of
    // parameters.
    //
    // Synopsis:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Added support for building Windows kube-proxy container image.
      A container image for kube-proxy on Windows can now be built with the command
      `make release-images KUBE_BUILD_WINDOWS=y`.
      The Windows kube-proxy image can be used with Windows Host Process Containers. ([#109939](https://github.com/kubernetes/kubernetes/pull/109939), [@claudiubelu](https://github.com/claudiubelu)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If the local keyring file isn't regularly updated, using <<sec:local-keyring,key export>>, then it may be that your CI builds, for example, would reach out to key servers too often (especially if you use disposable containers for builds).
    
    To avoid this, Gradle offers the ability to disallow use of key servers altogether: only the local keyring file would be used, and if a key is missing from this file, the build will fail.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"name": "foo",
    						"type": "production",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Image:                  "foo/bar",
    							TerminationMessagePath: v1.TerminationMessagePathDefault,
    							ImagePullPolicy:        v1.PullIfNotPresent,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top