Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for testIde (0.18 sec)

  1. src/cmd/go/go_test.go

    		// If the OS supports symlinks, use them instead of copying bytes.
    		testExe, err := os.Executable()
    		if err != nil {
    			log.Fatal(err)
    		}
    		if err := os.Symlink(testExe, testGo); err != nil {
    			// Otherwise, copy the bytes.
    			src, err := os.Open(testExe)
    			if err != nil {
    				log.Fatal(err)
    			}
    			defer src.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.logical_not"(%arg0) : (tensor<? x i32>) -> tensor<? x i32>
      func.return %0 : tensor<? x i32>
    }
    
    // Binary math ops
    // -----
    
    // CHECK-LABEL: testAdd
    func.func @testAdd(tensor<? x i32>, tensor<? x i32>) -> tensor<? x i32> {
    ^bb0(%arg0: tensor<? x i32>, %arg1: tensor<? x i32>):
      // TODO(jpienaar): Enable specifying label of enum for parsing.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top