Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for xtestonly (0.46 sec)

  1. tensorflow/compiler/mlir/BUILD

    # This should just be a wrapper around tf_mlir_opt_main. Don't add
    # direct dependencies to this binary.
    tf_cc_binary(
        name = "tf-opt",
        testonly = True,
        deps = [
            ":tf_mlir_opt_main",
        ],
    )
    
    tf_cc_binary(
        name = "tf-reduce",
        testonly = True,
        srcs = ["tf_mlir_reduce_main.cc"],
        deps = [
            ":init_mlir",
            ":register_common_dialects",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/BUILD

    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            ":reducer_tester",
            "//tensorflow/compiler/mlir:tf-opt",
            "//tensorflow/compiler/mlir:tf-reduce",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    filegroup(
        name = "reducer_tester",
        testonly = True,
        srcs = glob(
            [
                "reducer/*.sh",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_skip_write.txt

    rsc.io/testonly v1.0.0 h1:K/VWHdO+Jv7woUXG0GzVNx1czBXUt3Ib1deaMn+xk64=
    rsc.io/testonly v1.0.0/go.mod h1:OqmGbIFOcF+XrFReLOGZ6BhMM7uMBiQwZsyNmh74SzY=
    -- use.go --
    package use
    
    import _ "rsc.io/quote"
    -- graph.want --
    m go@1.18
    m golang.org/x/text@v0.0.0-20170915032832-14c0d48ead0c
    m rsc.io/quote@v1.5.2
    m rsc.io/sampler@v1.3.0
    m rsc.io/testonly@v1.0.0
    rsc.io/quote@v1.5.2 rsc.io/sampler@v1.3.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_notall.txt

    package fromotherroottest
    -- x/otherdep/otherdep.go --
    package otherdep
    -- x/otherdep/otherdep_test.go --
    package otherdep_test
    
    import _ "y/fromotherdeptest"
    -- x/otherroot/testonly/testonly.go --
    package testonly
    -- y/go.mod --
    module y
    
    go 1.15
    -- y/fromotherdeptest/fromotherdeptest.go --
    // Package fromotherdeptest is a test dependency of x/otherdep that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_test.txt

    cp go.mod.empty go.mod
    go list all
    stdout ^testing$
    stdout ^rsc.io/quote$
    stdout ^rsc.io/testonly$
    
    # list -deps -tests should also include testing
    # but not deps of tests of deps (rsc.io/testonly).
    go list -deps -test
    stdout ^testing$
    stdout ^rsc.io/quote$
    ! stdout ^rsc.io/testonly$
    
    # list -test all should succeed
    cp go.mod.empty go.mod
    go list -test all
    stdout '^testing'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 21:24:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_old.txt

    rsc.io/sampler v1.3.0 h1:HLGR/BgEtI3r0uymSP/nl2uPLsUnNJX8toRyhfpBTII=
    rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    rsc.io/testonly v1.0.0 h1:K/VWHdO+Jv7woUXG0GzVNx1czBXUt3Ib1deaMn+xk64=
    rsc.io/testonly v1.0.0/go.mod h1:OqmGbIFOcF+XrFReLOGZ6BhMM7uMBiQwZsyNmh74SzY=
    
    -- r/go.mod --
    module example.com/r
    
    require rsc.io/quote v1.5.0
    
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 14 21:04:12 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_readonly.txt

    -- x.go --
    package x
    import _ "rsc.io/quote"
    -- go.mod.nogo --
    module m
    
    require (
    	rsc.io/quote v1.5.2
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- go.mod.redundant --
    module m
    
    go 1.16
    
    require (
    	rsc.io/quote v1.5.2
    	rsc.io/sampler v1.3.0 // indirect
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- go.mod.indirect --
    module m
    
    go 1.16
    
    require (
    	rsc.io/quote v1.5.2 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tests/BUILD

    licenses(["notice"])
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
    )
    
    cc_library(
        name = "auto_clustering_test_helper",
        testonly = True,
        srcs = ["auto_clustering_test_helper.cc"],
        hdrs = ["auto_clustering_test_helper.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/jit:compilation_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_island_inlining/BUILD

        test_file_exts = [
            "mlir",
            "pbtxt",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 694 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/BUILD

        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 673 bytes
    - Viewed (0)
Back to top