Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 485 for mdeps (0.18 sec)

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

    )
    
    package_group(
        name = "friends",
        packages = [
            "//tensorflow/compiler/mlir/tfr/...",
        ],
    )
    
    gen_op_libraries(
        name = "mnist_ops",
        src = "ops_defs.py",
        deps = [
            "//tensorflow:tensorflow_py",
            "//tensorflow/python/framework:ops",
            "//tensorflow/python/ops:math_ops",
            "//tensorflow/python/ops:math_ops_gen",
            "//tensorflow/python/ops:nn_ops_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 11:50:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_case.txt

    env GO111MODULE=on
    
    go get
    go list -m all
    stdout '^rsc.io/quote v1.5.2'
    stdout '^rsc.io/QUOTE v1.5.2'
    
    go list -f 'DIR {{.Dir}} DEPS {{.Deps}}' rsc.io/QUOTE/QUOTE
    stdout 'DEPS.*rsc.io/quote'
    stdout 'DIR.*!q!u!o!t!e'
    
    go get rsc.io/QUOTE@v1.5.3-PRE
    go list -m all
    stdout '^rsc.io/QUOTE v1.5.3-PRE'
    
    go list -f '{{.Dir}}' rsc.io/QUOTE/QUOTE
    stdout '!q!u!o!t!e@v1.5.3-!p!r!e'
    
    -- go.mod --
    module x
    
    -- use.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 453 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/next_pluggable_device/BUILD

        licenses = ["notice"],
    )
    
    cc_library(
        name = "c_api",
        srcs = ["c_api.cc"],
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            ":tensor_pjrt_buffer_util",
            "//tensorflow/c:c_api_macros_hdrs",
            "//tensorflow/c:kernels_experimental_hdrs",
            "//tensorflow/c:kernels_hdrs",
            "//tensorflow/c:tf_buffer",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/BUILD

        ],
    )
    
    cc_library(
        name = "compilation_timer",
        hdrs = ["compilation_timer.h"],
        deps = [
            "//tensorflow/core/platform:profile_utils_cpu_utils",
        ],
    )
    
    tf_cc_test(
        name = "compilation_timer_test",
        srcs = ["compilation_timer_test.cc"],
        deps = [
            ":compilation_timer",
            "@com_google_absl//absl/time",
            "@com_google_googletest//:gtest_main",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/BUILD

        srcs_version = "PY3",
        deps = [
            ":composite",
            ":op_reg_gen",
            "//tensorflow/compiler/mlir/python/mlir_wrapper:filecheck_wrapper",
            "//tensorflow/python/platform:client_testlib",
        ],
    )
    
    py_strict_library(
        name = "test_utils",
        srcs = ["python/test_utils.py"],
        srcs_version = "PY3",
        deps = [
            "//tensorflow:tensorflow_py",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph_builder_test.go

    		makeID("v5", "kind", "", "name", "uid"),
    	}
    
    	testcases := []struct {
    		name              string
    		deps              []*node
    		verifiedAbsent    objectReference
    		expectedAlternate *objectReference
    	}{
    		{
    			name: "namespaced alternate version",
    			deps: []*node{
    				makeNode(ns1child1, withOwners(nsabsentparentns1)),
    				makeNode(ns1child2, withOwners(nsabsentparent_version)),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 17 15:49:32 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_std_vendor.txt

    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cp stdout $WORK/net-deps.txt
    
    
    # It should still report the same package dependencies when viewed from
    # within GOROOT/src.
    
    cd $GOROOT/src
    
    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cmp stdout $WORK/net-deps.txt
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 883 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

                        }
                    }
                }
    
                ${mavenTestRepository()}
    
                dependencies {
                    deps "org:foo:1.0"
                    deps project(":")
                    constraints {
                        deps project(":")
                    }
                }
    
                task resolve {
                    def files = configurations.res
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top