Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for last (0.17 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/ReleasedVersionsDetails.kt

    
    class ReleasedVersionsDetails(currentBaseVersion: GradleVersion, releasedVersionsFile: RegularFile) {
        val allPreviousVersions: List<GradleVersion>
        val mostRecentRelease: GradleVersion
        val mostRecentSnapshot: GradleVersion
    
        val allTestedVersions: List<GradleVersion>
    
        val mainTestedVersions: List<GradleVersion>
    
        init {
            val lowestInterestingVersion = GradleVersion.version("0.8")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

            if (agentJarNames.isEmpty()) {
                return
            }
            var replacementsCount = 0
            // readLines eats EOLs, so we need to use postfix to make sure the last line ends with EOL too.
            writeBytes(readLines().joinToString(separator = separator, postfix = separator) { line ->
                when {
                    // We assume that the declaration is not empty.
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

        if (!couldBeProperty && !couldBeExtensionProperty) {
            return emptyList()
        }
    
        val propertyJavaType =
            if (hasGetterName) method.returnType.name
            else method.parameterTypes.last().name
    
        val isBoolean =
            primitiveTypeStrings[propertyJavaType] == Boolean::class.simpleName
    
        val propertyNames =
            if (hasIsGetterName) listOf(method.name)
            else {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 20 20:38:19 GMT 2023
    - 11.1K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    # unassigned. This means that the ownership may be unknown, lost or
    # mixed across several groups.
    * @gradle/bt-unassigned-maintainers
    
    # Build infrastructure
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 15:52:09 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        val stageName: StageName,
        val specificBuilds: List<SpecificBuild> = emptyList(),
        val functionalTests: List<TestCoverage> = emptyList(),
        val docsTests: List<DocsTestCoverage> = emptyList(),
        val performanceTests: List<PerformanceTestCoverage> = emptyList(),
        val performanceTestPartialTriggers: List<PerformanceTestPartialTrigger> = emptyList(),
        val flameGraphs: List<FlameGraphGeneration> = emptyList(),
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  6. .cm/estimated_time_to_review.cm

      estimated_time_to_review:
        if:
          - {{ ('estimated_time_to_review' | isEnabledAutomation(pr)) }}
        run:
          - action: add-label@v1
            # etr is defined in the last section of this example
            args:
              label: "{{ calc.etr }} min review"
              color: {{ 'E94637' if (calc.etr >= 20) else ('FBBD10' if (calc.etr >= 5) else '36A853') }}
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 2K bytes
    - Viewed (0)
  7. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

        private
        fun updateProperties(latestKotlinVersions: List<String>) =
            Properties().run {
                setProperty("latests", latestKotlinVersions.joinToString(","))
                store(
                    propertiesFile.get().asFile,
                    comment.get()
                )
            }
    
        private
        fun updateCompatibilityDoc(latestKotlinVersions: List<String>) {
            val docFile = compatibilityDocFile.get().asFile
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 13:50:17 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

            }
        }
    
        private
        val List<String>.firstBaseVersion: String
            get() = VersionNumber.parse(first()).minorBaseVersion
    
        private
        val List<String>.lastBaseVersion: String
            get() = map { VersionNumber.parse(it) }
                .last { it.qualifier == null || it.qualifier?.startsWith("rc") == true }
                .minorBaseVersion
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jun 02 09:17:07 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

        private
        fun List<MappedApiFunctionParameter>.toDeclarationString(): String =
            takeIf { it.isNotEmpty() }?.let { list ->
                list.mapIndexed { index, p ->
                    when {
                        index == list.lastIndex && p.isVarargs && p.type.isKotlinArray -> "vararg `${p.name}`: ${singleTypeArgumentStringOf(p)}"
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            requiresNotSharedHost()
        }
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        dependencies {
            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Feb 27 09:57:17 GMT 2024
    - 6K bytes
    - Viewed (0)
Back to top