Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 449 for mdeps (0.12 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/BUILD

            "ir/tf_structs.h",
        ],
        deps = [
            "//tensorflow/core:framework",
            "//tensorflow/core/ir/types:Dialect",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
        ],
    )
    
    cc_library(
        name = "tensorflow_side_effects",
        srcs = [
        ],
        hdrs = [
            "ir/tf_side_effects.h",
        ],
        deps = ["@llvm-project//mlir:SideEffectInterfaces"],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

        deps = [
            ":calibration_statistics_proto_cc",
            "@com_google_absl//absl/types:span",
        ],
    )
    
    cc_library(
        name = "calibration_statistics_collector_min_max",
        srcs = ["calibration_statistics_collector_min_max.cc"],
        hdrs = ["calibration_statistics_collector_min_max.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/BUILD

        name = "concrete_function_list_type",
        hdrs = [
            "concrete_function_list_type.h",
        ],
        deps = [
            "//tensorflow/c/experimental/saved_model/core:concrete_function",
        ],
    )
    
    cc_library(
        name = "concrete_function_type",
        hdrs = [
            "concrete_function_type.h",
        ],
        deps = [
            "//tensorflow/c:conversion_macros",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/revived_types/BUILD

        hdrs = [
            "restored_resource_revival_state.h",
        ],
        deps = [
            ":tf_concrete_function_revival_state",
            "//tensorflow/c/eager:immediate_execution_tensor_handle",
        ],
    )
    
    cc_library(
        name = "revived_objects",
        hdrs = [
            "revived_objects.h",
        ],
        deps = [
            ":asset",
            ":constant",
            ":restored_resource",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 05:09:48 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/BUILD

            "//tensorflow:__pkg__",
        ],
        licenses = ["notice"],
    )
    
    pytype_strict_library(
        name = "quantization",
        srcs = ["quantization.py"],
        visibility = ["//visibility:public"],
        deps = [
            ":pywrap_quantization",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_py",
            "//tensorflow/compiler/mlir/quantization/tensorflow/python:py_function_lib_py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 20:18:36 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

            assert deps.find { it instanceof ClientModule && it.name == 'moduleTwo' && it.version == '1.0' }
    
            deps = configurations.gradleStuff.dependencies
            assert deps.findAll { it instanceof SelfResolvingDependency }.size() > 0 : "should include gradle api jars"
    
            deps = configurations.allowsCollections.dependencies
            assert deps.size() == 2
            assert deps.find { it instanceof ExternalDependency && it.group == 'org.mockito' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top