Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 448 for Cpp (3.98 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    * Check out the user manual chapter on link:{userManualPath}/building_${languageLC.raw}_projects.html[Building...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

    
    // TODO integrate objective-c/cpp we have coverage on windows
    public class DuplicateMixedSameBaseNamesTestApp extends TestNativeComponent {
    
        AvailableToolChains.InstalledToolChain toolChain
    
        public DuplicateMixedSameBaseNamesTestApp(AvailableToolChains.InstalledToolChain toolChain) {
            this.toolChain = toolChain
        }
    
        def plugins = ["assembler", "c", "cpp"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            when:
            copyFile(file("src/main/cpp/main.cpp"), file("src/main/cpp/foo.cpp").assertDoesNotExist())
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            and:
            final projectFile = projectFile("mainExe.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/cpp/basic/groovy/common/build.gradle

    plugins {
        id 'cpp-library'
    }
    
    // tag::cpp-source-set[]
    library {
        source.from file('src')
        privateHeaders.from file('src')
        publicHeaders.from file('include')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 199 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/common/build.gradle.kts

    plugins {
        id("cpp-library")
    }
    
    // tag::cpp-source-set[]
    library {
        source.from(file("src"))
        privateHeaders.from(file("src"))
        publicHeaders.from(file("include"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 203 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    #include "tensorflow/c/experimental/ops/gen/common/view_util.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/CppSharedLibraryVisualStudioTargetBinary.java

     * limitations under the License.
     */
    
    package org.gradle.ide.visualstudio.internal;
    
    import org.gradle.api.file.ProjectLayout;
    import org.gradle.language.cpp.CppBinary;
    import org.gradle.language.cpp.CppComponent;
    import org.gradle.language.cpp.CppSharedLibrary;
    
    import java.io.File;
    
    public class CppSharedLibraryVisualStudioTargetBinary extends AbstractCppBinaryVisualStudioTargetBinary {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/include_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/include_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/core/platform/path.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

      addInterfaces<TensorflowMlrtInlinerInterface>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cpp.inc"
          >();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.cpp.inc"
          >();
    }
    
    // Parse a type registered to this dialect.
    mlir::Type TensorflowMlrtDialect::parseType(
        mlir::DialectAsmParser &parser) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLangPluginTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.language.cpp.plugins
    
    import org.gradle.language.cpp.CppSourceSet
    import org.gradle.test.fixtures.plugin.AbstractLanguagePluginSpec
    
    class CppLangPluginTest extends AbstractLanguagePluginSpec {
    
        @Override
        Class getPluginClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top