Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 485 for mdeps (0.08 sec)

  1. tensorflow/compiler/mlir/tfrt/BUILD

        td_file = "runtime_fallback/runtime_fallback_ops.td",
        deps = [":runtime_fallback_ops_td_files"],
    )
    
    cc_library(
        name = "runtime_fallback_opdefs",
        srcs = [
            "runtime_fallback/runtime_fallback_combine.cc",
            "runtime_fallback/runtime_fallback_ops.cc",
        ],
        hdrs = [
            "runtime_fallback/runtime_fallback_ops.h",
        ],
        deps = [
            ":runtime_fallback_ops_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/action.go

    		aFmt := b.CompileAction(ModeBuild, depMode, p1)
    
    		var deps []*Action
    		if a1.buggyInstall {
    			// (*Builder).vet expects deps[0] to be the package
    			// and deps[1] to be "fmt". If we see buggyInstall
    			// here then a1 is an install of a shared library,
    			// and the real package is a1.Deps[0].
    			deps = []*Action{a1.Deps[0], aFmt, a1}
    		} else {
    			deps = []*Action{a1, aFmt}
    		}
    		for _, p1 := range p.Internal.Imports {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/build.gradle

    plugins {
        id '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('retrieveRuntimeDependencies', Copy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 855 bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

        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": [],
            "//tensorflow:windows": get_win_copts(),
        }),
        deps = [
            ":expiring_lru_cache",
            ":gcs_helper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/BUILD

        deps = [
            ":common_v1",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "shapes_for_arguments",
        srcs = ["shapes_for_arguments.py"],
        deps = [
            ":common",
            "//tensorflow:tensorflow_py",
        ],
    )
    
    py_strict_binary(
        name = "control_flow_upgrade_legacy_v1",
        srcs = ["control_flow_upgrade_legacy_v1.py"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 20:57:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/BUILD

        hdrs = [
            "tf_mlir_translate_cl.h",
        ],
        deps = [
            "@llvm-project//llvm:Support",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "export_graphdef",
        srcs = [
            "export_graphdef.cc",
        ],
        hdrs = [
            "export_graphdef.h",
        ],
        visibility = ["//visibility:public"],
        deps = [
            ":export_tf_dialect_op",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/experimental/public/BUILD

            "concrete_function.h",
        ],
        deps = [
            ":function_metadata",
            "//tensorflow/c/eager:c_api",
            "//tensorflow/c/experimental/saved_model/public:concrete_function",
            "//tensorflow/cc/experimental/base/public:status",
        ],
    )
    
    cc_library(
        name = "concrete_function_list",
        hdrs = [
            "concrete_function_list.h",
        ],
        deps = [
            ":concrete_function",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/BUILD

        ],
        compatible_with = get_compatible_with_portable(),
        deps = [
            "@llvm-project//mlir:FuncTdFiles",
        ],
    )
    
    cc_library(
        name = "lift_as_function_call",
        srcs = ["lift_as_function_call.cc"],
        hdrs = ["lift_as_function_call.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            ":attrs_and_constraints",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/goline_order.txt

    go get
    go list -deps -tags usem1
    
    # Using a new enough release reports the error after module load and suggests 'go mod tidy'
    env TESTGO_VERSION=go1.21.2
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    go mod tidy
    go list -deps -tags usem1
    
    # go get also works
    cp go.mod.orig go.mod
    ! go list -deps -tags usem1
    stderr 'updates to go.mod needed'
    stderr 'go mod tidy'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

            deps = a.findTransitiveDependents(["c"], [:])
            then:
            deps.accessibleDependentClasses == [] as Set
            deps.privateDependentClasses == [] as Set
    
            when:
            deps = a.findTransitiveDependents(["d"], [:])
            then:
            deps.accessibleDependentClasses == [] as Set
            deps.privateDependentClasses == ['e'] as Set
    
            when:
            deps = a.findTransitiveDependents(["e"], [:])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top