Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 778 for dups (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "clustering_passes.td",
        deps = [
            "@llvm-project//mlir:PassBaseTdFiles",
        ],
    )
    
    tf_cc_test(
        name = "verify_clustering_pass_test",
        srcs = ["verify_clustering_pass_test.cc"],
        deps = [
            ":clustering_passes",
            "//tensorflow/compiler/mlir/tf2xla/transforms:test_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/gradients/BUILD

            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/c/eager:abstract_context",
            "//tensorflow/c/eager:gradients_internal",
        ],
    )
    
    cc_library(
        name = "math_grad",
        srcs = ["math_grad.cc"],
        hdrs = [
            "math_grad.h",
        ],
        visibility = [
            "//tensorflow:internal",
        ],
        deps = [
            "//tensorflow/c/eager:abstract_tensor_handle",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:39:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top