Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 448 for Cpp (0.09 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpImplementationRenderer : public Renderer {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationDependenciesIntegrationTest.groovy

                }
            """
    
            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/app.cpp") << applicationSource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'cpp-application'
            """
    
            file('lib/build.gradle') << """
                apply plugin: 'cpp-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageIntegrationTest.groovy

            given:
            helloWorldApp.library.headerFiles.each { it.writeToDir(file("src/shared")) }
    
            file("src/main/cpp/main.cpp") << helloWorldApp.mainSource.content
            file("src/main/cpp2/hello.cpp") << helloWorldApp.librarySources[0].content
            file("src/main/sum-sources/sum.cpp") << helloWorldApp.librarySources[1].content
    
            and:
            buildFile << """
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestSuite.java

    import org.gradle.language.cpp.internal.DefaultCppComponent;
    import org.gradle.language.cpp.internal.NativeVariantIdentity;
    import org.gradle.language.internal.DefaultComponentDependencies;
    import org.gradle.language.nativeplatform.internal.Names;
    import org.gradle.nativeplatform.test.cpp.CppTestExecutable;
    import org.gradle.nativeplatform.test.cpp.CppTestSuite;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

    model {
        components { comp ->
            helloApi(NativeLibrarySpec)
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib ${notation}
                }
            }
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib ${notation}
                    cpp.lib library: 'hello'
                }
            }
        }
    }
    """
    
            when:
            succeeds "installMainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.h"
    
    #include <iterator>
    
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/build.gradle

                }
    // end::c-sources[]
            }
            main(NativeExecutableSpec) {
    // tag::cpp-sources[]
                sources {
                    cpp {
                        source {
                            srcDir "src/source"
                            include "**/*.cpp"
                        }
                    }
                }
    // end::cpp-sources[]
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1014 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/converters/ConsumerTargetTypeProvider.java

    import org.gradle.tooling.model.cpp.CppBinary;
    import org.gradle.tooling.model.cpp.CppComponent;
    import org.gradle.tooling.model.cpp.CppExecutable;
    import org.gradle.tooling.model.cpp.CppLibrary;
    import org.gradle.tooling.model.cpp.CppSharedLibrary;
    import org.gradle.tooling.model.cpp.CppStaticLibrary;
    import org.gradle.tooling.model.cpp.CppTestSuite;
    import org.gradle.tooling.model.idea.IdeaModuleDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/BUILD

        licenses = ["notice"],
    )
    
    cc_library(
        name = "cpp",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/c/experimental/ops/gen/cpp/renderers",
            "//tensorflow/c/experimental/ops/gen/model",
    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. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithApplicationIntegrationTest.groovy

                #include <app.h>
                int app() {
                    return 0;
                }
                int main() {
                    return app();
                }
            """
            file("src/main/headers/app.h") << """
                extern int app();
            """
            file("src/test/headers/tests.h") << """
            """
            file("src/test/cpp/test_app.cpp") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top