Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for 21$ (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	PROV_DSS_DH        = 13
    	PROV_EC_ECDSA_SIG  = 14
    	PROV_EC_ECNRA_SIG  = 15
    	PROV_EC_ECDSA_FULL = 16
    	PROV_EC_ECNRA_FULL = 17
    	PROV_DH_SCHANNEL   = 18
    	PROV_SPYRUS_LYNKS  = 20
    	PROV_RNG           = 21
    	PROV_INTEL_SEC     = 22
    	PROV_REPLACE_OWF   = 23
    	PROV_RSA_AES       = 24
    
    	/* dwFlags definitions for CryptAcquireContext */
    	CRYPT_VERIFYCONTEXT              = 0xF0000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

        slice_sizes = array<i64: 2, 1>
      } : (
        tensor<4x4x!quant.uniform<i8:f32, 3.000000e-01:-5>>, tensor<i64>,
        tensor<i64>
      ) -> tensor<2x1x!quant.uniform<i8:f32, 3.000000e-01:-5>>
      return %0 : tensor<2x1x!quant.uniform<i8:f32, 3.000000e-01:-5>>
    }
    
    
    // CHECK-DAG: %[[SLICE_SIZE:.+]] = arith.constant dense<[2, 1]> : tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

              break
            fi
            echo "Master IP not visible yet. Waiting..."
            sleep 5
          done
          break
        fi
    
        if gcloud compute addresses describe "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" >/dev/null 2>&1; then
          # it exists - postcondition satisfied
          break
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"break": 6, "const": 7, "continue": 8, "else": 9,
    				"for": 10, "function": 11, "if": 12, "import": 13,
    				"let": 14, "loop": 15, "package": 16, "namespace": 17,
    				"return": 18, "var": 19, "void": 20, "while": 21,
    				// identifiers that are part of the CEL language
    				"int": 101, "uint": 102, "double": 103, "bool": 104,
    				"string": 105, "bytes": 106, "list": 107, "map": 108,
    				"null_type": 109, "type": 110,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    							SucceededIndexes: ptr.To("0-2"),
    						}},
    					},
    				},
    			},
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.successPolicy.rules: Too many: 21: must have at most 20 items`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:       validGeneratedSelector,
    					CompletionMode: completionModePtr(batch.IndexedCompletion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/policy_static_test.go

    							Free:           0,
    							Reserved:       gb,
    							SystemReserved: 0,
    							TotalMemSize:   gb,
    						},
    					},
    					Cells:               []int{0, 1},
    					NumberOfAssignments: 2,
    				},
    				1: &state.NUMANodeState{
    					MemoryMap: map[v1.ResourceName]*state.MemoryTable{
    						v1.ResourceMemory: {
    							Allocatable:    512 * mb,
    							Free:           0,
    							Reserved:       512 * mb,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %1 = "tf.Const"() {value = dense<[2, 8]> : tensor<2xi32>} : () -> tensor<2xi32>
      %2 = "tf.Reshape"(%arg0, %0) : (tensor<4x4xi32>, tensor<2xi32>) -> tensor<8x2xi32>
      %3 = "tf.Reshape"(%2, %1) {device = "/job:localhost/replica:0/task:0/device:GPU:0"} : (tensor<8x2xi32>, tensor<2xi32>) -> tensor<2x8xi32>
      func.return %3: tensor<2x8xi32>
    
      // CHECK: %[[CONST:.*]] = "tf.Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    ElementsAttr ReshapeNCHWBiasToNHWC(Value v, Attribute a) {
      auto elements = mlir::cast<DenseElementsAttr>(a);
      auto shape = mlir::cast<ShapedType>(v.getType()).getShape();
      if (shape.size() != 4 || shape[2] != 1 || shape[3] != 1) return elements;
      const std::array<int64_t, 4> new_shape = {shape[0], shape[2], shape[3],
                                                shape[1]};
      auto new_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AOR, a1: C_S16CON, a6: C_REG, type_: 23, size: 8},
    	{as: AOR, a1: C_S16CON, a2: C_REG, a6: C_REG, type_: 23, size: 8},
    	{as: AOR, a1: C_U32CON, a2: C_REG, a6: C_REG, type_: 21, size: 8},
    	{as: AOR, a1: C_U32CON, a6: C_REG, type_: 21, size: 8},
    	{as: AOR, a1: C_32CON, a6: C_REG, type_: 23, size: 12},
    	{as: AOR, a1: C_32CON, a2: C_REG, a6: C_REG, type_: 23, size: 12},
    	{as: AORIS, a1: C_U16CON, a6: C_REG, type_: 58, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    					{
    						IP:       "1002:ab8::2:1",
    						Port:     8080,
    						Protocol: "TCP",
    					}: {
    						Address:   netutils.ParseIPSloppy("1002:ab8::2:1"),
    						Protocol:  "TCP",
    						Port:      uint16(8080),
    						Scheduler: "rr",
    					},
    				},
    				Destinations: map[ipvstest.ServiceKey][]*utilipvs.RealServer{
    					{
    						IP:       "1002:ab8::2:1",
    						Port:     8080,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top