Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 160 for src1 (0.67 sec)

  1. tensorflow/cc/saved_model/experimental/tests/BUILD

    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    tf_cc_test(
        name = "saved_model_api_test",
        srcs = [
            "saved_model_api_test.cc",
        ],
        data = [
            "//tensorflow/cc/saved_model:saved_model_half_plus_two",
        ],
        deps = [
            "//tensorflow/cc/experimental/base/public:runtime",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 795 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
        copts = get_win_copts(),
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
        deps = ["//tensorflow/c/experimental/filesystem:filesystem_interface"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  3. releasenotes/notes/preserve-original-src-ip.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 23369
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 14 01:45:12 UTC 2020
    - 218 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/batch_use_same_function/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
    - 905 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/types/builtins.go

    		dst, _ := coreType(x.typ).(*Slice)
    
    		y := args[1]
    		src0 := coreString(y.typ)
    		if src0 != nil && isString(src0) {
    			src0 = NewSlice(universeByte)
    		}
    		src, _ := src0.(*Slice)
    
    		if dst == nil || src == nil {
    			check.errorf(x, InvalidCopy, invalidArg+"copy expects slice arguments; found %s and %s", x, y)
    			return
    		}
    
    		if !Identical(dst.elem, src.elem) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            return addToCollection(dest, false, src);
        }
    
        @Deprecated
        public static <V, T extends Collection<? super V>> T addToCollection(T dest, boolean failOnNull, Iterable<? extends V>... srcs) {
            for (Iterable<? extends V> src : srcs) {
                for (V v : src) {
                    if (failOnNull && v == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top