Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 319 for mdeps (0.04 sec)

  1. tensorflow/cc/experimental/libexport/BUILD

    )
    
    cc_library(
        name = "save",
        srcs = ["save.cc"],
        hdrs = ["save.h"],
        deps = [
            "//tensorflow/core:lib",
            "//tensorflow/core/platform:status",
        ],
    )
    
    tf_cc_test(
        name = "save_test",
        size = "small",
        srcs = ["save_test.cc"],
        deps = [
            ":save",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "sparsecore_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    cc_library(
        name = "sparsecore_passes",
        hdrs = [
            "sparsecore_passes.h",
        ],
        textual_hdrs = [
            "sparsecore_passes.h.inc",
        ],
        deps = [
            ":embedding_pipelining",
            ":embedding_program_key",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_multirepo.txt

    # initial standalone module should use no downloaded modules
    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_test_files.txt

    # package in the same directory.
    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. cni/pkg/ipset/ipset.go

    func NewIPSet(name string, v6 bool, deps NetlinkIpsetDeps) (IPSet, error) {
    	var err error
    	set := IPSet{
    		V4Name: fmt.Sprintf(V4Name, name),
    		Deps:   deps,
    		Prefix: name,
    	}
    	err = deps.ipsetIPHashCreate(set.V4Name, false)
    	if v6 {
    		set.V6Name = fmt.Sprintf(V6Name, name)
    		v6err := deps.ipsetIPHashCreate(set.V6Name, true)
    		err = errors.Join(err, v6err)
    	}
    	return set, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/quantization_lib/BUILD

            "quantization_utils.cc",
        ],
        hdrs = [
            "quantization_driver.h",
            "quantization_interface.h.inc",
            "quantization_traits.h",
            "quantization_utils.h",
        ],
        deps = [
            ":quantization_config",
            ":quantization_interfaces_inc_gen",
            "//tensorflow/compiler/mlir/lite/quantization/ir:QuantOps",
            "//tensorflow/compiler/mlir/quantization/common/ir:QuantOps",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/build.gradle.kts

    plugins {
        java
    }
    
    // tag::file-deps[]
    repositories {
        flatDir {
            name = "libs dir"
            dir(file("libs"))  // <1>
        }
    }
    
    dependencies {
        implementation(files("libs/our-custom.jar"))  // <2>
        implementation(":awesome-framework:2.0")     // <3>
        implementation(":utility-library:1.0")  // <3>
    }
    // end::file-deps[]
    
    // tag::retrieve-deps[]
    tasks.register<Copy>("retrieveRuntimeDependencies") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 894 bytes
    - Viewed (0)
  8. tensorflow/c/kernels/BUILD

        prefix = "bitcast_op",
        deps = [
            "//tensorflow/c:kernels",
            "//tensorflow/c:ops",
            "//tensorflow/c:tf_datatype",
            "//tensorflow/c:tf_status",
            "//tensorflow/c:tf_tensor",
            "//tensorflow/core:framework",
            "//tensorflow/core:lib",
        ],
    )
    
    tf_kernel_library(
        name = "summary_op",
        prefix = "summary_op",
        deps = [
            "//tensorflow/c:kernels",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

        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",
            "//tensorflow/c:tf_file_statistics",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/build_defs.bzl

    def gen_op_libraries(
            name,
            src,
            deps = [],
            tags = [],
            test = False):
        """gen_op_libraries() generates all cc and py libraries for composite op source.
    
        Args:
            name: used as the name component of all the generated libraries.
            src: File contains the composite ops.
            deps: Libraries the 'src' depends on.
            tags:
            test:
        """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top