Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for VAL1 (0.05 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    				resp.Mounts = append(resp.Mounts, &pluginapi.Mount{
    					ContainerPath: "/container_dir1/file2",
    					HostPath:      "host_dir1/file2",
    					ReadOnly:      true,
    				})
    
    				resp.Envs["key1"] = "val1"
    			}
    		}
    		resps := new(pluginapi.AllocateResponse)
    		resps.ContainerResponses = append(resps.ContainerResponses, resp)
    		return resps, nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

          %false_value = "tf.Sub"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
          "tf.Yield"(%false_value) : (tensor<f32>) -> ()
        }) { is_stateless = true}: (tensor<i1>) -> tensor<f32>
    
      // CHECK: [[Val1:%.*]] = "tf.Sub"(%arg0, %arg1)
      // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:GPU:0"
      %1 = "tf.IfRegion"(%false) ({
          %true_value = "tf.Mul"(%arg0, %arg1) : (tensor<f32>, tensor<f32>) -> tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    						{
    							Name:  "ENV1",
    							Value: "VAL1",
    						},
    					},
    				},
    			},
    			"duplicate env", "",
    		},
    		{
    			"target-ref-good",
    			&extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      # flag arguments.
      # Old format:
      #   command=["/bin/sh", "-c", "exec KUBE_EXEC_BINARY --param1=val1 --param2-val2"].
      # New format:
      #   command=["KUBE_EXEC_BINARY"]  # No shell dependencies.
      #   args=["--param1=val1", "--param2-val2"]
      IFS=' ' read -ra FLAGS <<< "$1"
      params=""
      for flag in "${FLAGS[@]}"; do
        params+="\n\"$flag\","
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// cond: canMergeSym(sym1,sym2) && is32Bit(int64(off1)+int64(off2)) && (ptr.Op != OpSB || !config.ctxt.Flag_dynlink)
    	// result: (STP [off1+off2] {mergeSym(sym1,sym2)} ptr val1 val2 mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym1 := auxToSym(v.Aux)
    		if v_0.Op != OpARM64MOVDaddr {
    			break
    		}
    		off2 := auxIntToInt32(v_0.AuxInt)
    		sym2 := auxToSym(v_0.Aux)
    		ptr := v_0.Args[0]
    		val1 := v_1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			if len(st.str) == 0 || st.str[0] != '_' {
    				st.fail("expected _ after number")
    			}
    			st.advance(1)
    			base := st.demangleType(false)
    			return &Special2{Prefix: "construction vtable for ", Val1: base, Middle: "-in-", Val2: derived}
    		case 'F':
    			t := st.demangleType(false)
    			return &Special{Prefix: "typeinfo fn for ", Val: t}
    		case 'J':
    			t := st.demangleType(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    }
    
    func TestUnschedulablePodsMap(t *testing.T) {
    	var pods = []*v1.Pod{
    		st.MakePod().Name("p0").Namespace("ns1").Annotation("annot1", "val1").NominatedNodeName("node1").Obj(),
    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top