Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pch (0.08 sec)

  1. testing/performance/src/templates/native-pch-source/pch.h

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 209 bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/nativeplatform/NativePreCompiledHeaderPerformanceTest.groovy

            runner.testGroup = 'pre-compiled header builds'
            runner.buildSpec {
                displayName("Using PCH")
                invocation {
                    args("-PusePCH")
                    tasksToRun("clean", "assemble")
                }
            }
            runner.baseline {
                displayName("No PCH")
                invocation {
                    tasksToRun("clean", "assemble")
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-pch-source/lib.c

    #include "pch.h"
    
    <% functionCount.times { %>
    int ${functionName}_${it+1} () {
      printf("Hello world!");
      return 0;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 126 bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        ]
        subProjectTemplates = ['native-pch-source', 'native-pch-component', 'gradle-properties']
        daemonMemory = '256m'
    }
    
    performanceTest.registerTestProject("mediumPCHNative", NativeProjectGeneratorTask) {
        projects = 1
        sourceFiles = 200
        templateArgs = [
            moduleCount: 1,
            functionCount: 1
        ]
        subProjectTemplates = ['native-pch-source', 'native-pch-component', 'gradle-properties']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-pch-component/build.gradle

            <% moduleCount.times { %>
            lib${it+1}(NativeLibrarySpec) {
                sources {
                    c {
                        if (project.hasProperty("usePCH")) {
                            preCompiledHeader "pch.h"
                        }
                    }
                    binaries.all {
                        if (toolChain.name == "visualCpp") {
                            cCompiler.args("/showIncludes")
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Creating a precompiled header file
    
    [source.multi-language-sample,c]
    .src/hello/headers/pch.h
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/src/hello/headers/pch.h[]
    ----
    
    === Example: Including a precompiled header file in a source file
    
    [source.multi-language-sample,cpp]
    .src/hello/cpp/hello.cpp
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.internal.modulemap.ModuleMap> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ModuleMap.java:0)
    Class <org.gradle.nativeplatform.internal.pch.PchEnabledLanguageTransform> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PchEnabledLanguageTransform.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top