Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for src1 (0.03 sec)

  1. src/cmd/compile/internal/types2/builtins_test.go

    	{"copy", `var src, dst []byte; copy(dst, src)`, `func([]byte, []byte) int`},
    	{"copy", `type T [][]int; var src, dst T; _ = copy(dst, src)`, `func(p.T, p.T) int`},
    	{"copy", `var src string; var dst []byte; copy(dst, src)`, `func([]byte, string) int`},
    	{"copy", `type T string; type U []byte; var src T; var dst U; copy(dst, src)`, `func(p.U, p.T) int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/cc/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "srcs_no_runtime",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
            "framework/scope_internal.h",
            "//tensorflow/cc/saved_model:loader.h",
        ],
    )
    
    filegroup(
        name = "srcs",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. arm_compiler.BUILD

    package(default_visibility = ["//visibility:public"])
    
    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 12 11:17:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/fileCollections/tests/fileCollectionsConventions.out

    Source dirs: [src, src2]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 13:03:07 UTC 2024
    - 25 bytes
    - Viewed (0)
  5. tensorflow/c/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "safe_ptr_hdr",
        srcs = ["safe_ptr.h"],
        visibility = [
            "//tensorflow:internal",
        ],
    )
    
    cc_library(
        name = "safe_ptr",
        srcs = [
            "safe_ptr.cc",
            "//tensorflow/c/eager:headers",
        ],
        hdrs = ["safe_ptr.h"],
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/BUILD

        size = "small",
        srcs = ["string_test.cc"],
        deps = [
            ":string",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "none",
        srcs = [
            "none.cc",
        ],
        hdrs = [
            "none.h",
        ],
    )
    
    tf_cc_test(
        name = "none_test",
        size = "small",
        srcs = ["none_test.cc"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

        ],
    )
    
    tf_cc_test(
        name = "config_test",
        srcs = ["config_test.cc"],
        deps = [
            ":config",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto_cc",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "io",
        srcs = ["io.cc"],
        hdrs = ["io.h"],
        compatible_with = get_compatible_with_portable(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/BUILD

            "@absl_py//absl:app",
            "@absl_py//absl/flags",
        ],
    )
    
    filegroup(
        name = "testdata",
        srcs = glob([
            "tests/testdata/**",
        ]),
    )
    
    tf_cc_test(
        name = "libtf_object_test",
        size = "medium",
        srcs = ["tests/object_test.cc"],
        deps = [
            ":libtf",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_mips64x.S

    	sd	$20, 40($29)
    	sd	$21, 48($29)
    	sd	$22, 56($29)
    	sd	$23, 64($29)
    	sd	$28, 72($29)
    	sd	$30, 80($29)
    #ifndef __mips_soft_float
    	sdc1	$f24, 88($29)
    	sdc1	$f25, 96($29)
    	sdc1	$f26, 104($29)
    	sdc1	$f27, 112($29)
    	sdc1	$f28, 120($29)
    	sdc1	$f29, 128($29)
    	sdc1	$f30, 136($29)
    	sdc1	$f31, 144($29)
    #endif
    
    	// prepare SB register = pc & 0xffffffff00000000
    	bal	1f
    1:
    	dsrl	$28, $31, 32
    	dsll	$28, $28, 32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

            "//visibility:public",
        ],
        licenses = ["notice"],
    )
    
    flatbuffer_cc_library(
        name = "runtime_metadata_fbs",
        srcs = ["runtime_metadata.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    cc_library(
        name = "execution_metadata_exporter",
        srcs = [
            "execution_metadata_exporter.cc",
        ],
        hdrs = [
            "execution_metadata_exporter.h",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top