Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for test_image (0.27 sec)

  1. pkg/registry/batch/job/storage/storage_test.go

    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyOnFailure,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/registry/apps/daemonset/storage/storage_test.go

    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  3. pkg/registry/apps/statefulset/storage/storage_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:            "test",
    							Image:           "test_image",
    							ImagePullPolicy: api.PullIfNotPresent,
    						},
    					},
    					RestartPolicy: api.RestartPolicyAlways,
    					DNSPolicy:     api.DNSClusterFirst,
    				},
    			},
    			Replicas:       7,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. pkg/registry/apps/replicaset/storage/storage_test.go

    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. pkg/registry/core/replicationcontroller/storage/storage_test.go

    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/registry/apps/deployment/storage/storage_test.go

    					Labels: map[string]string{"a": "b"},
    				},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:                     "test",
    							Image:                    "test_image",
    							ImagePullPolicy:          api.PullIfNotPresent,
    							TerminationMessagePolicy: api.TerminationMessageReadFile,
    						},
    					},
    					RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    							Labels: map[string]string{"a": "b"},
    						},
    						Spec: api.PodSpec{
    							Containers: []api.Container{
    								{
    									Name:                     "test",
    									Image:                    "test_image",
    									ImagePullPolicy:          api.PullIfNotPresent,
    									TerminationMessagePolicy: api.TerminationMessageReadFile,
    								},
    							},
    							RestartPolicy: api.RestartPolicyAlways,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/image/image_test.go

    		if r != 0x1234 {
    			t.Errorf("%T: want red value 0x%04x got 0x%04x", c, 0x1234, r)
    			continue
    		}
    	}
    	testImage := []image{
    		NewRGBA64(Rect(0, 0, 10, 10)),
    		NewNRGBA64(Rect(0, 0, 10, 10)),
    		NewAlpha16(Rect(0, 0, 10, 10)),
    		NewGray16(Rect(0, 0, 10, 10)),
    	}
    	for _, m := range testImage {
    		m.Set(1, 2, color.NRGBA64{0xffff, 0xffff, 0xffff, 0x1357}) // Non-premultiplied alpha.
    		r, _, _, _ := m.At(1, 2).RGBA()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 30 02:00:49 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const Node* original_dst_node, Node** dst_image) {
      if (IsInSubgraph(dst_func_id)) {
        // The edge is to a subgraph from a regular node in the output graph so
        // use the subgraph's call node input.
        *dst_image = subgraphs_.at(dst_func_id).GetCallNode();
      } else {
        // The destination of the edge is in the output graph so use the node image
        // in the output graph.
        *dst_image = node_images.at(original_dst_node);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. cluster/log-dump/logexporter-daemonset.yaml

      selector:
        matchLabels:
          app: logexporter
      template:
        metadata:
          labels:
            app: logexporter
        spec:
          containers:
          - name: logexporter-test
            image: gcr.io/k8s-testimages/logexporter:v20200401-c3269f485
            env:
            - name: NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            command:
            - logexporter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top