Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for dotV (0.09 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK: %[[DOT:.+]] = stablehlo.dot_general %[[ARG0]], %[[DQ]], batching_dims = [0, 1] x [0, 1], contracting_dims = [3] x [2], precision = [DEFAULT, DEFAULT] : (tensor<1x2x3x4xf32>, tensor<1x2x4x5xf32>) -> tensor<1x2x3x5xf32>
    // CHECK: return %[[DOT]]
    
    // -----
    
    // Tests that a hybrid per-channel quantized convolution for tfl.conv_2d is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"getDate": 202,
    				"all":     203,
    				"size":    "204",
    				// identifiers that have _s
    				"_true": 301,
    				// identifiers that have the characters we escape
    				"dot.dot":                            401,
    				"dash-dash":                          402,
    				"slash/slash":                        403,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation_test.go

    			ClientConfig: validClientConfig,
    			SideEffects:  &noSideEffect,
    		},
    		}, true),
    		expectedError: `webhooks[1].name: Invalid value: "k8s.io": should be a domain with at least three segments separated by dots, webhooks[2].name: Required value`,
    	}, {
    		name: "Webhooks must have unique names when created",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:         "webhook.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    	}
    	pkg := arg[:dot]
    	if ctxt.BuildMode == BuildModePlugin && pkg == "main" {
    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto reshaped = rewriter.create<mhlo::DynamicReshapeOp>(
          loc, result_type, matmul.getResult(), result_shape);
      return reshaped.getResult();
    }
    
    // Converts mhlo.dot to tf.MatMul. Reshape ops will be inserted when
    // necessary.
    Value ConvertDotOp(PatternRewriter& rewriter, Operation* old_op) {
      auto dot_op = cast<mhlo::DotOp>(old_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    		name: "zero-length name",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("")),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("metadata", "name"), ""),
    		},
    	}, {
    		name: "name-with-dots",
    		set:  mkStatefulSet(&validPodTemplate, tweakName("abc.123")),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("metadata", "name"), "abc.123", ""),
    		},
    	}, {
    		name: "long name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		gatewaySemantics := cfg.Annotations[constants.InternalGatewaySemantics] == constants.GatewaySemanticsGateway
    
    		v := Validation{}
    
    		// Gateway name must conform to the DNS label format (no dots)
    		if !labels.IsDNS1123Label(name) && !gatewaySemantics {
    			v = AppendValidation(v, fmt.Errorf("invalid gateway name: %q", name))
    		}
    		value, ok := cfg.Spec.(*networking.Gateway)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	{"", ".", false},
    	{".", "", false},
    	{".", ".", false},
    	{"example.com", "example.com.", true},
    	{"example.com.", "example.com", false},
    	{"example.com.", "example.com.", true}, // perfect matches allow trailing dots in patterns
    	{"*.com.", "example.com.", false},
    	{"*.com.", "example.com", false},
    	{"*.com", "example.com", true},
    	{"*.com", "example.com.", true},
    	{"foo:bar", "foo:bar", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top