Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for src2 (0.12 sec)

  1. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

    FileCollection collection = layout.files('src/file1.txt',
                                      new File('src/file2.txt'),
                                      ['src/file3.csv', 'src/file4.csv'],
                                      Paths.get('src', 'file5.txt'))
    // end::simple-params[]
    
    file('src').mkdirs()
    file('src/dir1').mkdirs()
    file('src/file1.txt').mkdirs()
    file('src2').mkdirs()
    file('src2/dir1').mkdirs()
    file('src2/dir2').mkdirs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/fileCollections/kotlin/build.gradle.kts

    // tag::simple-params[]
    val collection: FileCollection = layout.files(
        "src/file1.txt",
        File("src/file2.txt"),
        listOf("src/file3.csv", "src/file4.csv"),
        Paths.get("src", "file5.txt")
    )
    // end::simple-params[]
    
    file("src").mkdirs()
    file("src/dir1").mkdirs()
    file("src/file1.txt").mkdirs()
    file("src2").mkdirs()
    file("src2/dir1").mkdirs()
    file("src2/dir2").mkdirs()
    
    // tag::closure[]
    tasks.register("list") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. 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)
  4. testing/performance/src/templates/native-monolithic/src/src.c

    #include "src${sourceIdx}_h.h"
    
    <% includedHeaderCount.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    <% includedCommonHeaderCount.times { %>
    #include "common/include/header${it}.h"
    <% } %>
    
    #include <stdio.h>
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 322 bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-monolithic/src/src.cpp

    #include "src${sourceIdx}_h.h"
    
    <% includedHeaderCount.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    <% includedCommonHeaderCount.times { %>
    #include "common/include/header${it}.h"
    <% } %>
    
    #include <stdio.h>
    
    <% functionCount.times { %>
    int CPP_function_${(it+1)+offset} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 325 bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-monolithic/src/src.h

    #ifndef PROJECT_HEADER_${sourceIdx}_H
    #define PROJECT_HEADER_${sourceIdx}_H
    
    <% sourceIdx.times { %>
    #include "src${it}_h.h"
    <% } %>
    
    
    <% functionCount.times { %>
    int C_function_${(it+1)+offset} (); 
    int CPP_function_${(it+1)+offset} (); 
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 287 bytes
    - Viewed (0)
  7. 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)
  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. tensorflow/compiler/mlir/quantization/tensorflow/ops/BUILD

        ],
    )
    
    tf_cc_test(
        name = "tf_op_quant_spec_test",
        srcs = ["tf_op_quant_spec_test.cc"],
        deps = [
            ":tf_op_quant_spec",
            "//tensorflow/compiler/mlir/quantization/tensorflow:quantization_options_proto_cc",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    cc_library(
        name = "tf_quantize_op",
        srcs = [
            "tf_quantize_op.cc",
        ],
        hdrs = ["tf_quantize_op.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 07:44:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/BUILD

    cc_library(
        name = "tfrt_fallback_util",
        srcs = ["tfrt_fallback_util.cc"],
        hdrs = ["tfrt_fallback_util.h"],
        visibility = ["//tensorflow/compiler/mlir/tfrt:__subpackages__"],
        deps = [
            ":tfrt_fallback_async_opdefs",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
        ],
    )
    
    td_library(
        name = "tfrt_fallback_td_files",
        srcs = [
            "tfrt_fallback.td",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 27 20:43:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top