Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for xtestonly (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

                    singleton(CommonBuilds.PROJECT_PATH_TEST, CommonBuilds.BUILD_PATH_RUNTIME)));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.TEST_ONLY.id(),
                    DependencyScope.TEST_ONLY.isTransitive(),
                    singleton(CommonBuilds.PROJECT_PATH_TEST, CommonBuilds.BUILD_PATH_COMPILE)));
    
            // system
            result.add(internalScopeManager.createSystemDependencyScope(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/BUILD

            "math_grad.h",
            "nn_grad.h",
            "not_differentiable.h",
        ],
        visibility = ["//tensorflow/python:__pkg__"],
    )
    
    cc_library(
        name = "grad_test_helper",
        testonly = True,
        srcs = ["grad_test_helper.cc"],
        hdrs = ["grad_test_helper.h"],
        visibility = ["//visibility:private"],
        deps = [
            "//tensorflow/c/eager:gradient_checker",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:39:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. tensorflow/cc/BUILD

            ":linalg_grad",
            ":manip_grad",
            ":math_grad",
            ":nn_grad",
            ":resource_variable_grad",
        ],
    )
    
    cc_library(
        name = "grad_testutil",
        testonly = 1,
        srcs = ["gradients/grad_testutil.cc"],
        hdrs = ["gradients/grad_testutil.h"],
        deps = [
            ":grad_op_registry",
            ":ops",
            ":scope",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    # copybara:uncomment package(default_applicable_licenses = ["//tensorflow:license"])
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        srcs = [
            "//tensorflow/compiler/mlir/tfrt:tfrt_fallback_translate",
            "//tensorflow/core/runtime_fallback:tf_bef_executor",
            "//tensorflow/core/runtime_fallback/util:fallback_test_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/BUILD

            "@com_google_googletest//:gtest_main",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
        ],
    )
    
    cc_library(
        name = "test_base",
        testonly = 1,
        srcs = [],
        hdrs = ["test_base.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            ":func",
            "//tensorflow/compiler/mlir/lite:tensorflow_lite",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

        PathScope TEST_COMPILE = pathScope(
                "test-compile",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED,
                DependencyScope.TEST_ONLY,
                DependencyScope.TEST);
    
        PathScope TEST_RUNTIME = pathScope(
                "test-runtime",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.RUNTIME,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/BUILD

        srcs = ["tests/visit_test.cc"],
        deps = [
            ":libtf",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "runtime_test",
        testonly = 1,
        srcs = [
            "tests/runtime_test.cc",
        ],
        hdrs = [
            "tests/runtime_test.h",
        ],
        data = [":testdata"],
        deps = [
            ":libtf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/BUILD

        deps = [
            ":compilation_timer",
            "@com_google_absl//absl/time",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "test_matchers",
        testonly = True,
        hdrs = ["test_matchers.h"],
        deps = [
            "//tensorflow/compiler/mlir/tf2xla:compile_mlir_util",
            "@com_google_googletest//:gtest",
            "@local_tsl//tsl/platform:statusor",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.0.txt

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sampler
    
    import (
    	"testing"
    
    	"golang.org/x/text/language"
    	_ "rsc.io/testonly"
    )
    
    var glassTests = []struct {
    	prefs []language.Tag
    	text  string
    }{
    	{
    		[]language.Tag{language.Make("en-US"), language.Make("fr")},
    		"I can eat glass and it doesn't hurt me.",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        /**
         * Runtime and test.
         */
        RUNTIME("runtime", true),
    
        /**
         * Provided.
         */
        PROVIDED("provided", false),
    
        /**
         * Test compile only.
         */
        TEST_ONLY("test-only", false),
    
        /**
         * Test compile and test runtime.
         */
        TEST("test", false),
    
        /**
         * Test runtime.
         */
        TEST_RUNTIME("test-runtime", false),
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top