Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 942 for heps (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

    dependencies {
        conf "org:to-remove:1.0"
        conf "org:foo:1.0"
    }
    configurations.conf.withDependencies { deps ->
        deps.remove deps.find { it.name == 'to-remove' }
        deps.add project.dependencies.create("org:bar:1.0")
    }
    configurations.compile.withDependencies { deps ->
        assert deps.empty : "Compile dependencies should be empty"
    }
    """
    
            then:
            resolvedGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

        main = "py_function_lib_test.py",
        deps = ["//tensorflow/python/platform:client_testlib"],
    )
    
    cc_library(
        name = "type_casters",
        hdrs = ["type_casters.h"],
        copts = ["-fexceptions"],  # Required for pybind11.
        # Required for pybind11.
        features = [
            "-use_header_modules",
            "-parse_headers",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top