Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for subprojectName (0.2 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    If you run a full build as shown above, Gradle will have produced the archive in two formats for you:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

        void initializeIntoTestDir() {
            containerDir = testDirectory
            targetDir = containerDir.createDir("some-thing")
            subprojectDir = subprojectName() ? targetDir.file(subprojectName()) : targetDir
            executer.beforeExecute {
                executer.inDirectory(targetDir)
                executer.ignoreMissingSettingsFile()
            }
        }
    
        @Override
        void useTestDirectoryThatIsNotEmbeddedInAnotherBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "app.cpp"
        public static final String SAMPLE_APP_HEADER = "app.h"
        public static final String SAMPLE_APP_TEST_CLASS = "app_test.cpp"
    
        @Override
        String subprojectName() { 'app' }
    
        @ToBeFixedForConfigurationCache(because = "cpp-application plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIB_CLASS = "hello.cpp"
        public static final String SAMPLE_LIB_TEST_CLASS = "hello_test.cpp"
    
        @Override
        String subprojectName() { 'lib' }
    
        @ToBeFixedForConfigurationCache(because = "cpp-library plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    [listing.terminal.sample-command]
    ----
    \$ ./gradlew javadoc
    
    BUILD SUCCESSFUL
    2 actionable tasks: 1 executed, 1 up-to-date
    ----
    
    You can view the generated `javadoc` files by opening the HTML file located at `${subprojectName.raw}/build/docs/javadoc/index.html`.
    
    You can also generate a Javadoc JAR for your library:
    
    .build.gradle.kts
    [source.multi-language-sample,kotlin]
    ----
    java {
        withJavadocJar()
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/TemplateFactory.java

            return fromSourceTemplate(clazzTemplate, sourceSetName, subprojectName, language);
        }
    
        public TemplateOperation fromSourceTemplate(String clazzTemplate, String sourceSetName, String subprojectName, Language language) {
            return fromSourceTemplate(clazzTemplate, t -> {
                t.subproject(subprojectName);
                t.sourceSet(sourceSetName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:38:39 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftLibraryInitIntegrationTest.groovy

        def setup() {
            swiftcToolChain.initialiseEnvironment()
        }
    
        def cleanup() {
            swiftcToolChain.resetEnvironment()
        }
    
        @Override
        String subprojectName() { 'lib' }
    
        @ToBeFixedForConfigurationCache(because = "swift-library plugin")
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

                include('subproject1')
                include('subproject2')
            """
        }
    
        private void setupSubproject(String subprojectName, String className, JvmInstallationMetadata metadata) {
            file("${subprojectName}/build.gradle") << """
                plugins {
                    id 'java'
                }
    
                java {
                    toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

            allExecutables.eachWithIndex { List<String> executables, int executableGroupIdx ->
                executables.eachWithIndex { String subprojectName, int idx ->
                    def dependentProjects = allLibraries.get(executableGroupIdx).flatten()
                    generateExecutableSubproject(subprojectName, new File(projectTemplate, "main.cpp"), dependentProjects)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  10. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        }
    
        @Test
        fun canSplitLargeProjects() {
            fun assertAllSplitsArePresent(subProjectName: String, functionalTests: List<BaseGradleBuildType>) {
                val splitSubProjectNames = functionalTests.map { it.getSubProjectSplitName() }.toSet()
                val expectedProjectNames = (1..functionalTests.size).map { "${subProjectName}_$it" }.toSet()
                assertEquals(expectedProjectNames, splitSubProjectNames)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top