Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 261 for sris (0.03 sec)

  1. tensorflow/compiler/aot/tests/BUILD

        },
        test_file_exts = ["lit.pbtxt"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "filecheck_test_utilities",
        testonly = True,
        srcs = [
            "test_error_message.lit.pbtxt.config.pbtxt",
            "test_error_message.lit.pbtxt.debug.pbtxt",
            "test_error_message.lit.pbtxt.fake_py.debug",
        ],
        data = [
    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. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				excluded.Delete(check.Name())
    				fmt.Fprintf(&individualCheckOutput, "[+]%s excluded: ok\n", check.Name())
    				continue
    			}
    			if err := check.Check(r); err != nil {
    				slis.ObserveHealthcheck(context.Background(), check.Name(), name, slis.Error)
    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/experimental/tests/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    tf_cc_test(
        name = "saved_model_api_test",
        srcs = [
            "saved_model_api_test.cc",
        ],
        data = [
            "//tensorflow/cc/saved_model:saved_model_half_plus_two",
        ],
        deps = [
            "//tensorflow/cc/experimental/base/public:runtime",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 795 bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
        copts = get_win_copts(),
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
        deps = ["//tensorflow/c/experimental/filesystem:filesystem_interface"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/function.cc

    using tensorflow::Status;
    using tensorflow::StatusOr;
    
    // TODO(srbs): Move this to unified execution API.
    tensorflow::Status ExecuteFunction(
        AbstractFunctionPtr trace, AbstractContext* ctx,
        absl::Span<tensorflow::AbstractTensorHandle* const> inputs,
        absl::Span<tensorflow::AbstractTensorHandle*> outputs) {
      // TODO(srbs): Provide a function execution API on ctx so that we do not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/connector/ResourceConnectorSpecification.java

            return null;
        }
    
        default Collection<Authentication> getAuthentications() {
            return Collections.emptyList();
        }
    
        default HttpRedirectVerifier getRedirectVerifier() {
            return uris -> {
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
        name = "debug_info_files",
        srcs = glob(
            [
                "**/*.debug",
            ],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 905 bytes
    - Viewed (0)
  9. ci/official/wheel_test/BUILD

    py_test(
        name = "test_import_api_packages",
        srcs = ["test_import_api_packages.py"],
        deps = ["@pypi_tensorflow//:pkg"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 133 bytes
    - Viewed (0)
  10. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

        out_fuzz_files = [op_name + "_fuzz.cc" for op_name in op_names]
        native.genrule(
            name = name + "_genrule",
            outs = out_fuzz_files,
            srcs = api_def_srcs,
            tools = [":op_fuzz_gen_tool"],
            cmd = ("$(location :op_fuzz_gen_tool) " +
                   " $$(dirname $(location " + out_fuzz_files[0] + "))" +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top