Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for xtestonly (0.72 sec)

  1. tensorflow/compiler/aot/tests/BUILD

    [[
        genrule(
            name = "gen_" + config_file,
            testonly = 1,
            srcs = [template_file],
            outs = [config_file],
            cmd = ("sed " + sed_replace + " " +
                   "$(location " + template_file + ") " +
                   "> $(OUTS)"),
            tags = ["manual"],
        ),
        tf_library(
            name = bench_name,
            testonly = 1,
            config = config_file,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationServiceBase.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.analysisMessageBus
    
    public abstract class KotlinGlobalModificationServiceBase(private val project: Project) : KotlinGlobalModificationService() {
        @TestOnly
        protected abstract fun incrementModificationTrackers(includeBinaryTrackers: Boolean)
    
        @TestOnly
        override fun publishGlobalModuleStateModification() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

        /**
         * Publishes an event of global modification of the module state of all [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalModuleStateModification()
    
        /**
         * Publishes an event of global modification of the module state of all source [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalSourceModuleStateModification()
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/BUILD

    tf_library(
        name = "test_graph_tfadd",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
        graph = "test_graph_tfadd.pbtxt",
        mlir_components = "None",
        tags = [
            "manual",
        ],
    )
    
    tf_library(
        name = "test_graph_tfadd_mlir_bridge",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/malformed_gosum_issue62345.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=
    
    -- main.go --
    package main
    
    import (
    	"fmt"
    
    	"rsc.io/quote"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/modification/KotlinStandaloneGlobalModificationService.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinGlobalModificationServiceBase
    
    class KotlinStandaloneGlobalModificationService(private val project: Project) : KotlinGlobalModificationServiceBase(project) {
        @TestOnly
        override fun incrementModificationTrackers(includeBinaryTrackers: Boolean) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 821 bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile.bzl

            visibility = visibility,
            testonly = testonly,
            tags = tags,
            xla_flags = xla_flags,
        )
    
        tfcompile_gen_object_files = tfcompile_gen + "_object_files"
        native.filegroup(
            name = tfcompile_gen_object_files,
            srcs = [tfcompile_gen],
            output_group = "object_files",
            visibility = visibility,
            testonly = testonly,
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                    boolean testOnly = isTestConfiguration(configurations.get(artifact.getId()));
                    boolean asModule = isModule(testOnly, artifact.getFile());
                    if (componentIdentifier instanceof ProjectComponentIdentifier) {
                        visitor.visitProjectDependency(artifact, testOnly, asModule);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top