Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Neal (0.16 sec)

  1. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

        linkstatic = False,
        tags = [
            "manual",
            "nobuilder",
            "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",
    Plain Text
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 987 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "posix_filesystem_impl",
        srcs = ["posix_filesystem.cc"],
        hdrs = ["posix_filesystem.h"],
        deps = [
            ":posix_filesystem_helper",
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

    tf_cc_shared_object(
        name = "gcs_filesystem",
        framework_so = [],
        linkstatic = False,
        per_os_targets = 1,
        visibility = ["//visibility:public"],
        deps = [":gcs_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "gcs_filesystem_impl",
        srcs = ["gcs_filesystem.cc"],
        hdrs = ["gcs_filesystem.h"],
        copts = select({
            "//conditions:default": [],
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 3.4K bytes
    - Viewed (0)
Back to top