Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 184 for src2 (0.11 sec)

  1. ci/official/wheel_test/BUILD

    py_test(
        name = "test_import_api_packages",
        srcs = ["test_import_api_packages.py"],
        deps = ["@pypi_tensorflow//:pkg"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 133 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/image_format/BUILD

            "//tensorflow/tools/tfg_graph_transforms:__subpackages__",
            "//waymo/onboard/ml/chauffeur_net/utils:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "internal_api",
        srcs = ["internal_api.cc"],
        hdrs = ["internal_api.h"],
        deps = [
            "//tensorflow/cc/saved_model:metrics",
            "//tensorflow/cc/saved_model:util",
            "//tensorflow/core/platform",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 03:07:44 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/test/BUILD

    )
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    tf_cc_shared_object(
        name = "test_pluggable_device.so",
        srcs = ["test_pluggable_device.cc"],
        visibility = ["//tensorflow/c:__subpackages__"],
        deps = [
            "//tensorflow/c/experimental/stream_executor:stream_executor_hdrs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 566 bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/views/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "views",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp/renderers:__pkg__"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 731 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/glob_lit_test.bzl

    _ALWAYS_EXCLUDE = [
        "**/LICENSE.txt",
        "**/README.txt",
        "**/lit.local.cfg",
        # Exclude input files that have spaces in their names, since bazel
        # cannot cope with such "targets" in the srcs list.
        "**/* *",
        "**/* */**",
    ]
    
    def _run_lit_test(name, data, size, tags, driver, features, exec_properties):
        """Runs lit on all tests it can find in `data` under tensorflow/compiler/mlir.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/dumper_test.go

    package syntax
    
    import (
    	"testing"
    )
    
    func TestDump(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping test in short mode")
    	}
    
    	ast, _ := ParseFile(*src_, func(err error) { t.Error(err) }, nil, CheckBranches)
    
    	if ast != nil {
    		Fdump(testOut(), ast)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:31 UTC 2022
    - 424 bytes
    - Viewed (0)
  7. src/runtime/map.go

    }
    
    func mapclone2(t *maptype, src *hmap) *hmap {
    	dst := makemap(t, src.count, nil)
    	dst.hash0 = src.hash0
    	dst.nevacuate = 0
    	// flags do not need to be copied here, just like a new map has no flags.
    
    	if src.count == 0 {
    		return dst
    	}
    
    	if src.flags&hashWriting != 0 {
    		fatal("concurrent map clone and map write")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    		seenSrcs := map[int]bool{}
    		for j, src := range stack.Sources {
    			if seenSrcs[src] {
    				continue
    			}
    			seenSrcs[src] = true
    			s.Sources[src].Places = append(s.Sources[src].Places, StackSlot{i, j})
    		}
    	}
    }
    
    func (s *StackSet) assignColors() {
    	// Assign different color indices to different packages.
    	const numColors = 1048576
    	for i, src := range s.Sources {
    		pkg := packageName(src.FullName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/runtime/BUILD

        default_visibility = [
            "//tensorflow/cc/experimental/libtf:__subpackages__",
        ],
        licenses = ["notice"],
    )
    
    cc_library(
        name = "runtime",
        srcs = [
            "runtime.cc",
        ],
        hdrs = [
            "runtime.h",
        ],
        deps = [
            "//tensorflow/c:tf_datatype",
            "//tensorflow/c:tf_status_helper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/examples/pad/BUILD

        ],
    )
    
    gen_op_libraries(
        name = "pad_ops",
        src = "ops_defs.py",
        deps = [
            "//tensorflow:tensorflow_py",
            "//tensorflow/python/ops:array_ops_gen",
            "//tensorflow/python/platform:flags",
            "@absl_py//absl:app",
        ],
    )
    
    tf_py_strict_test(
        name = "pad_ops_test",
        size = "medium",
        srcs = ["pad_ops_test.py"],
        data = [":pad_ops_mlir"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 00:51:34 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top