Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 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. 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)
  6. 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)
  7. go.sum

    go.etcd.io/etcd/api/v3 v3.5.12/go.mod h1:Ot+o0SWSyT6uHhA56al1oCED0JImsRiU9Dc26+C2a+4=
    go.etcd.io/etcd/client/pkg/v3 v3.5.12 h1:EYDL6pWwyOsylrQyLp2w+HkQ46ATiOvoEdMarindU2A=
    go.etcd.io/etcd/client/pkg/v3 v3.5.12/go.mod h1:seTzl2d9APP8R5Y2hFL3NVlD6qC/dOT+3kvrqPyTas4=
    go.etcd.io/etcd/client/v3 v3.5.12 h1:v5lCPXn1pf1Uu3M4laUE2hp/geOTc5uPcYYsNe1lDxg=
    go.etcd.io/etcd/client/v3 v3.5.12/go.mod h1:tSbBCakoWmmddL+BKVAJHa9km+O/E+bumDe9mSbPiqw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    	coverIndex := 0
    	// We create the cover counters as new top-level variables in the package.
    	// We need to avoid collisions with user variables (GoCover_0 is unlikely but still)
    	// and more importantly with dot imports of other covered packages,
    	// so we append 12 hex digits from the SHA-256 of the import path.
    	// The point is only to avoid accidents, not to defeat users determined to
    	// break things.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top