- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 192 for Franco (0.07 sec)
-
.teamcity/src/main/kotlin/promotion/PromotionProject.kt
buildType(PublishNightlySnapshotFromQuickFeedbackStepPromote(branch)) buildType(PublishBranchSnapshotFromQuickFeedback) buildType(PublishMilestone(branch)) if (branch.isMaster) { buildType(StartReleaseCycle) buildType(StartReleaseCycleTest) } else { buildType(PublishReleaseCandidate(branch)) buildType(PublishFinalRelease(branch)) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 09:53:08 UTC 2024 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt
import jetbrains.buildServer.configs.kotlin.triggers.schedule import model.StageName import vcsroots.gradlePromotionBranches class PublishNightlyDocumentation(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName, promoteTask = "publishBranchDocs", triggerName = StageName.PULL_REQUEST_FEEDBACK.uuid, vcsRootId = gradlePromotionBranches ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 07 17:05:02 UTC 2024 - 2.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt
package promotion import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedbackStepUpload(branch: VersionedSettingsBranch) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.7K bytes - Viewed (0) -
.github/workflows/maven.yml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Jun 03 17:58:28 UTC 2024 - 5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/GradleBuildToolRootProject.kt
import promotion.PromotionProject import util.UtilPerformanceProject import util.UtilProject import java.io.File class GradleBuildToolRootProject(branch: VersionedSettingsBranch) : Project({ val model = CIBuildModel( projectId = "Check", branch = branch, buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("./subprojects.json")) )
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1002 bytes - Viewed (0) -
.github/workflows/scorecards-analysis.yml
# ============================================================================ name: Scorecards supply-chain security on: # For Branch-Protection check. Only the default branch is supported. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection branch_protection_rule: # To guarantee Maintained check is occasionally updated. See
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 2.6K bytes - Viewed (0) -
docs/hotfixes.md
``` λ git checkout RELEASE.2021-04-22T15-44-28Z ``` Create a branch and proceed to push the branch **upstream** > (upstream here points to ******@****.***:minio/minio.git) ``` λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix λ git push -u upstream RELEASE.2021-04-22T15-44-28Z.hotfix ``` Pick the relevant commit-id say for example commit-id from the master branch ``` commit 4f3317effea38c203c358af9cb5ce3c0e4173976
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Feb 14 21:36:02 UTC 2024 - 5K bytes - Viewed (0) -
.teamcity/README.md
based on a specific branch. Currently, we have two pipelines: `master` and `release`, but you can easily create and test another isolated pipeline from any branch. We'll explain everything via an example. Let's say you make some changes on your branch `myTestBranch` (we highly recommend to name this branch without prefix and hyphen (`-`) because it's used to generate build type ID) and want to
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Mar 06 23:02:25 UTC 2024 - 4K bytes - Viewed (0) -
.github/workflows/update-nightly.yml
name: Set nightly branch to master HEAD permissions: {} jobs: master-to-nightly: if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks runs-on: ubuntu-latest permissions: contents: write steps: - uses: zofrex/mirror-branch@0be56f4c8077a288a635a491b306ba0bb1c810e6 # v1.0.4 name: Set nightly branch to master HEAD with:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jun 26 15:41:19 UTC 2024 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt
import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedback(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.3K bytes - Viewed (0)