Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 150 for ContainerT (0.15 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    	pod := &api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: name, Namespace: "test"},
    		Spec:       api.PodSpec{},
    	}
    	pod.Spec.Containers = make([]api.Container, 0, numContainers)
    	for i := 0; i < numContainers; i++ {
    		pod.Spec.Containers = append(pod.Spec.Containers, api.Container{
    			Image:     "foo:V" + strconv.Itoa(i),
    			Resources: resources,
    		})
    	}
    	return pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers_test.go

    	}
    
    	if !podWorkers.ShouldPodContainersBeTerminating(types.UID("abc")) {
    		t.Errorf("Expected pod to be expected to terminate containers (does not exist and synced at least once)")
    	}
    	if podWorkers.CouldHaveRunningContainers(types.UID("abc")) {
    		t.Errorf("Expected pod to be known not to have running containers (does not exist and synced at least once)")
    	}
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("abc")) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// claims in a way that maintains the identity of a pod. Every claim in
    	// this list must have at least one matching (by name) volumeMount in one
    	// container in the template. A claim in this list takes precedence over
    	// any volumes in the template, with the same name.
    	// TODO: Define the behavior if a claim already exists with the same name.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    container: the container this variable is placed in.
    shared_name: the name by which this variable is referred to.
    dtype and shape: attributes representing the data type and shape held in the
      variable.
    
    Example:
        resource_variable_ops.var_handle_op(
              dtype=dtypes.int32, shape=[8, 16], container="foo", shared_name="bar")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      private static class Container<T> {
        @SuppressWarnings("unused")
        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      private static class Container<T> {
        @SuppressWarnings("unused")
        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %1 = "tf.VarHandleOp"() {container = "", shape = #tf_type.shape<>, shared_name = "x"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
      "tf.AssignAddVariableOp"(%1, %0) : (tensor<*x!tf_type.resource<tensor<f32>>>, tensor<f32>) -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            def e = thrown(IllegalArgumentException)
            e.message == 'Cannot have two attributes with the same name but different types. This container already has an attribute named \'flavor\' of type \'org.gradle.api.internal.artifacts.configurations.DefaultConfigurationSpec$Flavor\' and you are trying to store another one of type \'java.lang.String\''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "containers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.Deployment.json

                    "localhostProfile": "localhostProfileValue"
                  }
                },
                "stdin": true,
                "stdinOnce": true,
                "tty": true
              }
            ],
            "containers": [
              {
                "name": "nameValue",
                "image": "imageValue",
                "command": [
                  "commandValue"
                ],
                "args": [
                  "argsValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.7K bytes
    - Viewed (0)
Back to top