Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for src2 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
        ],
    )
    
    # Bundle together all the debug info files that are used by the tests.
    filegroup(
        name = "debug_info_files",
        srcs = glob(
            [
                "**/*.debug",
            ],
        ),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/public/BUILD

        ],
        licenses = ["notice"],
    )
    
    # TODO(bmzhao): Remove these exports_files and rules, swap with cc_public_library instead.
    # cc_public_library would allows us to separate the header dep graph from header+srcs dep graph.
    exports_files(
        [
            "concrete_function.h",
            "concrete_function_list.h",
            "function_metadata.h",
            "saved_model_api.h",
            "signature_def_function.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            checkVersionParsing("1.0.1b", 0, 0, 0, 0, "1.0.1b");
            checkVersionParsing("1.0M2", 0, 0, 0, 0, "1.0M2");
            checkVersionParsing("1.0RC2", 0, 0, 0, 0, "1.0RC2");
            checkVersionParsing("1.1.2.beta1", 1, 1, 2, 0, "beta1");
            checkVersionParsing("1.7.3.beta1", 1, 7, 3, 0, "beta1");
            checkVersionParsing("1.7.3.0", 0, 0, 0, 0, "1.7.3.0");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	Parse(usage func()) []string
    }
    
    // A Fetcher reads and returns the profile named by src, using
    // the specified duration and timeout. It returns the fetched
    // profile and a string indicating a URL from where the profile
    // was fetched, which may be different than src.
    type Fetcher interface {
    	Fetch(src string, duration, timeout time.Duration) (*profile.Profile, string, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top