Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 261 for sris (0.1 sec)

  1. cmd/local-locker.go

    			for _, resource := range args.Resources {
    				lris, ok := l.lockMap[resource]
    				if !ok {
    					continue
    				}
    				// Collect uids, so we don't mutate while we delete
    				uids := make([]string, 0, len(lris))
    				for _, lri := range lris {
    					uids = append(uids, lri.UID)
    				}
    
    				// Delete collected uids:
    				for _, uid := range uids {
    					lris, ok := l.lockMap[resource]
    					if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/BUILD

        ],
    )
    
    filegroup(
        name = "converter_python_api_hdrs",
        srcs = [
            "converter_python_api.h",
        ],
        visibility = [
            "//tensorflow/python:__subpackages__",
        ],
    )
    
    cc_library(
        name = "converter_python_api",
        srcs = ["converter_python_api.cc"],
        hdrs = ["converter_python_api.h"],
        features = ["-parse_headers"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
    )
    
    cc_library(
        name = "auto_clustering_test_helper",
        testonly = True,
        srcs = ["auto_clustering_test_helper.cc"],
        hdrs = ["auto_clustering_test_helper.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/jit:compilation_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

            "@llvm-project//mlir:Support",
        ],
    )
    
    cc_library(
        name = "math_utils",
        srcs = ["utils/math_utils.cc"],
        hdrs = ["utils/math_utils.h"],
        compatible_with = get_compatible_with_portable(),
        deps = ["@llvm-project//mlir:Support"],
    )
    
    tf_cc_test(
        name = "math_utils_test",
        srcs = ["utils/math_utils_test.cc"],
        deps = [
            ":math_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/internal/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "concrete_function",
        srcs = [
            "concrete_function.cc",
        ],
        hdrs = [
            "//tensorflow/c/experimental/saved_model/public:concrete_function.h",
        ],
        copts = tf_copts(),
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    func testFiles(t *testing.T, filenames []string, srcs [][]byte, colDelta uint, manual bool, opts ...func(*Config)) {
    	enableAlias := true
    	opts = append(opts, func(conf *Config) { conf.EnableAlias = enableAlias })
    	testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	if !manual {
    		enableAlias = false
    		testFilesImpl(t, filenames, srcs, colDelta, manual, opts...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/net/addrselect.go

    }
    
    type byRFC6724 struct {
    	addrs    []IPAddr // addrs to sort
    	addrAttr []ipAttr
    	srcs     []netip.Addr // or not valid addr if unreachable
    	srcAttr  []ipAttr
    }
    
    func (s *byRFC6724) Len() int { return len(s.addrs) }
    
    func (s *byRFC6724) Swap(i, j int) {
    	s.addrs[i], s.addrs[j] = s.addrs[j], s.addrs[i]
    	s.srcs[i], s.srcs[j] = s.srcs[j], s.srcs[i]
    	s.addrAttr[i], s.addrAttr[j] = s.addrAttr[j], s.addrAttr[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

    filegroup(
        name = "extra_files",
        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/BUILD

    )
    
    cc_library(
        name = "error_collector",
        srcs = ["error_collector.cc"],
        hdrs = ["error_collector.h"],
        deps = [
            ":types_util",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
            "@com_google_absl//absl/strings",
        ],
    )
    
    cc_library(
        name = "error_collector_inst",
        srcs = ["error_collector_inst.cc"],
        hdrs = ["error_collector_inst.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/cc/tools/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "freeze_saved_model",
        srcs = ["freeze_saved_model.cc"],
        hdrs = ["freeze_saved_model.h"],
        deps = [
            "//tensorflow/cc/saved_model:loader",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top