Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 456 for dotV (0.09 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1E65          ; valid                                  # 1.1  LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
    1E66          ; mapped                 ; 1E67          # 1.1  LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
    1E67          ; valid                                  # 1.1  LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
    1E68          ; mapped                 ; 1E69          # 1.1  LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/post_quantize.mlir

      // CHECK-DAG: %[[Q1:.*]] = stablehlo.uniform_quantize %[[ARG0]]
      // CHECK-NOT: "quantfork.qcast"
      // CHECK: %[[DOT:.*]] = stablehlo.dot %[[Q1]], %[[QCST]]
      // CHECK: %[[DQ:.*]] = stablehlo.uniform_dequantize %[[DOT]]
      // CHECK: return %[[DQ]]
      %cst = stablehlo.constant dense<-0.390246302> : tensor<3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // DISABLE-ALL-DOT-GENERAL-SAME: _entry_function = @composite_dot_general_fn_1
    // DISABLE-ALL-DOT-GENERAL-SAME: _original_entry_function
    // DISABLE-ALL-DOT-GENERAL-SAME: _quantization_method = "no_quantization { }"
    // DISABLE-ALL-DOT-GENERAL-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // DISABLE-ALL-DOT-GENERAL: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // DISABLE-ALL-DOT-GENERAL: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/debug/gosym/symtab.go

    	if pathend < 0 {
    		pathend = 0
    	}
    	// Find the first dot after pathend (or from the beginning, if there was
    	// no slash in name).
    	l := strings.Index(name[pathend:], ".")
    	// Find the last dot after pathend (or the beginning).
    	r := strings.LastIndex(name[pathend:], ".")
    	if l == -1 || r == -1 || l == r {
    		// There is no receiver if we didn't find two distinct dots after pathend.
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"simple",
    		"now-with-dashes",
    		"1-starts-with-num",
    		"1234",
    		"simple/simple",
    		"now-with-dashes/simple",
    		"now-with-dashes/now-with-dashes",
    		"now.with.dots/simple",
    		"now-with.dashes-and.dots/simple",
    		"1-num.2-num/3-num",
    		"1234/5678",
    		"1.2.3.4/5678",
    		"Uppercase_Is_OK_123",
    		"example.com/Uppercase_Is_OK_123",
    		"requests.storage-foo",
    		strings.Repeat("a", 63),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows.go

    	// See also go.dev/issue/43947.
    	var (
    		dotf   string
    		dotErr error
    	)
    	if _, found := syscall.Getenv("NoDefaultCurrentDirectoryInExePath"); !found {
    		if f, err := findExecutable(filepath.Join(".", file), exts); err == nil {
    			if execerrdot.Value() == "0" {
    				execerrdot.IncNonDefault()
    				return f, nil
    			}
    			dotf, dotErr = f, &Error{file, ErrDot}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

    func.func @testDotToDotGeneralVectorVector(%arg0: tensor<3072xf32>, %arg1: tensor<3072xf32>) -> tensor<f32> {
      %0 = "mhlo.dot"(%arg0, %arg1) : (tensor<3072xf32>, tensor<3072xf32>) -> tensor<f32>
      func.return %0 : tensor<f32>
    
    // CHECK:      %[[RES:.*]] = "mhlo.dot_general"(%arg0, %arg1) <{
    // CHECK-SAME:   dot_dimension_numbers = #mhlo.dot<
    // CHECK-SAME:     lhs_contracting_dimensions = [0],
    // CHECK-SAME:     rhs_contracting_dimensions = [0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/text/template/exec.go

    	case *parse.ContinueNode:
    		panic(walkContinue)
    	case *parse.IfNode:
    		s.walkIfOrWith(parse.NodeIf, dot, node.Pipe, node.List, node.ElseList)
    	case *parse.ListNode:
    		for _, node := range node.Nodes {
    			s.walk(dot, node)
    		}
    	case *parse.RangeNode:
    		s.walkRange(dot, node)
    	case *parse.TemplateNode:
    		s.walkTemplate(dot, node)
    	case *parse.TextNode:
    		if _, err := s.wr.Write(node.Text); err != nil {
    			s.writeError(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top