Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for last (0.13 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/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)
  3. .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)
  4. .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)
  5. .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)
  6. 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)
  7. 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)
  8. .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)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

            }
        }
    }
    
    class CrossVersionTestBucketProvider(
        crossVersionBuckets: List<List<String>>,
        private val model: CIBuildModel
    ) : FunctionalTestBucketProvider {
        private val buckets: List<BuildTypeBucket> = crossVersionBuckets.map { GradleVersionRangeCrossVersionTestBucket(it[0], it[1]) }
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Jan 18 05:14:09 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    Tasks known to have problems are listed in the build logic. You can find this list at:
    
        build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts
    
    If you discover a task that doesn't work with the configuration but it not in this list, please add it.
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top