Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testTarget (0.33 sec)

  1. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			}
    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, in particular, too-far
    // conditional branches are fixed, and also verify that the
    // instruction's pc can be correctly aligned even when branches
    // need to be fixed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.site.cfg.py

        'tensorflow/dtensor/mlir/tests',
    ]
    config.mlir_tf_tools_dirs = [
        os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'], s)
        for s in mlir_tf_tools_dirs
    ]
    test_dir = os.environ['TEST_TARGET']
    test_dir = test_dir.strip('/').rsplit(':', 1)[0]
    config.mlir_test_dir = os.path.join(real_test_srcdir,
                                        os.environ['TEST_WORKSPACE'], test_dir)
    
    if platform.system() == 'Windows':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/internal/zstd/zstd_test.go

    	if zstdBigErr != nil {
    		t.Fatal(zstdBigErr)
    	}
    	return zstdBigBytes
    }
    
    // Test decompressing a large file. We don't have a compressor,
    // so this test only runs on systems with zstd installed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping expensive test in short mode")
    	}
    
    	data := bigData(t)
    	compressed := zstdBigData(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top