Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for components (0.21 sec)

  1. architecture/README.md

    <!-- 
      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    The diagram below shows the main components of the Gradle architecture. See [ADR4](standards/0004-use-a-platform-architecture.md) for more details.
    
    <!-- This diagram is generated. Use `./gradlew :architectureDoc` to update it -->
    ```mermaid
        graph TD
    
        subgraph core["core platform"]
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/profiles_settings.xml

    <component name="InspectionProjectProfileManager">
      <settings>
        <option name="PROJECT_PROFILE" value="Gradle" />
        <version value="1.0" />
      </settings>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Sep 13 15:24:58 GMT 2018
    - 172 bytes
    - Viewed (0)
  4. .idea/scopes/Gradle_public_API.xml

    <component name="DependencyValidationManager">
        <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync -->
        <scope name="Gradle public API"
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            then:
            assertFoundDeadJavadocLinks(sampleDoc, "org/gradle/nowhere/tasks/InputDirectory.html")
        }
    
        def "finds broken javadoc links with leading javadoc path component"() {
            given:
            sampleDoc << """
    === Invalid Javadoc Links
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Mon Nov 28 22:01:54 GMT 2022
    - 7.8K bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            because("Provides the IntegrationTestFixturesRule implementation")
        }
        codenarc("org.codenarc:CodeNarc:$codenarcVersion")
        codenarc(embeddedKotlin("stdlib"))
    
        components {
            withModule<CodeNarcRule>("org.codenarc:CodeNarc") {
                params(groovyVersion)
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 30 10:26:21 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        internal
        fun configure(components: ComponentMetadataHandler, configurations: ConfigurationContainer) {
            if (upgrade != null) {
                configurations.forceUpgrade(selected, upgrade!!)
            } else {
                providedBy.forEachIndexed { idx, provider ->
                    if (provider != selected) {
                        components.declareSyntheticCapability(provider, idx.toString())
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Aug 24 23:27:45 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

            testFixturesRuntimeOnly(libs.bytebuddy)
            testFixturesRuntimeOnly(libs.cglib)
        }
    }
    
    // Do not publish test fixture, we use them only internal for now
    val javaComponent = components["java"] as AdhocComponentWithVariants
    javaComponent.withVariantsFromConfiguration(testFixturesRuntimeElements) {
        skip()
    }
    javaComponent.withVariantsFromConfiguration(testFixturesApiElements) {
        skip()
    }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

    import java.nio.file.LinkOption
    import java.util.stream.Collectors
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    import javax.inject.Inject
    import kotlin.collections.component1
    import kotlin.collections.component2
    import kotlin.collections.set
    import kotlin.streams.toList
    
    
    typealias LeftoverFiles = Map<File, List<String>>
    
    
    abstract class TestFilesCleanupService @Inject constructor(
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

                    String errMsg = "Missing Javadoc file for " + link + " in " + sourceFile.getName();
                    if (link.startsWith("javadoc")) {
                        errMsg += " (You may need to remove the leading `javadoc` path component)";
                    }
                    errorsForFile.add(new Error(lineNumber, line, errMsg));
                }
                // TODO: Also parse the HTML in the javadoc file to check if the specific method is present
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 05 07:57:56 GMT 2023
    - 8.6K bytes
    - Viewed (0)
Back to top