Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for promise (0.17 sec)

  1. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt

    ) {
        init {
            id("Promotion_SnapshotFromQuickFeedbackStepPromote")
            name = "Nightly Snapshot (from QuickFeedback) - Promote"
            description = "Promotes a previously built distribution on this agent on '${branch.branchName}' from Quick Feedback as a new nightly snapshot. This build checks out gradle-promote, so don't be misled by the 'master' branch."
    
            steps {
                buildStep(
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Dec 09 14:10:43 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

        validations:
          required: false
      - type: input
        id: page
        attributes:
          label: Page with the problem
          description: Please, provide a link to the relevant documentation page
        validations:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 15 10:01:01 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

        val isExperimental: Boolean
            get() = branchName == EXPERIMENTAL_BRANCH
    
        fun vcsRootId() = DslContext.settingsRoot.id.toString()
    
        fun promoteNightlyTaskName() = nightlyTaskName("promote")
        fun prepNightlyTaskName() = nightlyTaskName("prep")
    
        fun promoteMilestoneTaskName(): String = when {
            isRelease -> "promoteReleaseMilestone"
            else -> "promoteMilestone"
        }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  4. README.md

    * Checkout the [Community Resources](https://gradle.org/resources/) as well
    * Join our [Slack Channel](https://gradle.com/slack-invite)
    
    
    ## Contributing
    
    If you're looking to contribute to Gradle or provide a patch/pull request, you can find more info [here](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. .teamcity/mvnw.cmd

    		"}"
        if "%MVNW_VERBOSE%" == "true" (
            echo Finished downloading %WRAPPER_JAR%
        )
    )
    @REM End of extension
    
    @REM Provide a "standardized" way to retrieve the CLI args that will
    @REM work with both Windows and non-Windows executions.
    set MAVEN_CMD_LINE_ARGS=%*
    
    Batch File
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  6. Development.md

    That meant possible solutions for Problems could be scattered all over the console output.
    To improve the user experience, we introduced a new way to provide suggestions.
    The idea is to provide a list of suggestions for a problem in the console output.
    The suggestions are displayed in the separate "Try"- section of the console output.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 06 22:54:40 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/JvmCategory.kt

     */
    
    package common
    
    enum class JvmCategory(
        override val vendor: JvmVendor,
        override val version: JvmVersion
    ) : Jvm {
        MIN_VERSION(JvmVendor.oracle, JvmVersion.java8),
        // Oracle doesn't provide zip JDK distribution for Windows anymore, we avoid using it
        MIN_VERSION_WINDOWS(JvmVendor.openjdk, JvmVersion.java8),
        MAX_LTS_VERSION(JvmVendor.openjdk, JvmVersion.java21),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Apr 06 02:21:32 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt

                        triggerRules = "+:root=${VersionedSettingsBranch.fromDslContext().vcsRootId()}:."
                        // The promotion itself will be triggered on gradle-promote's master branch
                        branchFilter = "+:master"
                    }
                }
            }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.6K bytes
    - Viewed (1)
  9. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Steps to Reproduce
          description: |
            Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive.
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

                text(
                    "branch.to.promote",
                    "%branch.qualifier%",
                    label = "Branch to promote",
                    description = "Type in the branch of gradle/gradle you want to promote. Leave the default value when promoting an existing build.",
                    display = ParameterDisplay.PROMPT,
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 1.9K bytes
    - Viewed (0)
Back to top