- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 236 for French (0.13 sec)
-
.github/workflows/sigbuild-docker-branch.yml
name: Upload SIG Build docker containers modified for release branches on: workflow_dispatch: push: paths: - '.github/workflows/sigbuild-docker-branch.yml' - 'tensorflow/tools/tf_sig_build_dockerfiles/**' - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md' branches: - "r[1-9].[0-9]+" permissions: contents: read jobs:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 3.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.6.md
* Begin paths for internationalization in kubectl ([#36802](https://github.com/kubernetes/kubernetes/pull/36802), [@brendandburns](https://github.com/brendandburns)) * Add initial french translations for kubectl ([#40645](https://github.com/kubernetes/kubernetes/pull/40645), [@brendandburns](https://github.com/brendandburns)) #### Updates to apply
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K 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/src/main/kotlin/promotion/PublishRelease.kt
} cleanup { history(days = 180) } this.init() } } class PublishFinalRelease(branch: VersionedSettingsBranch) : PublishRelease( promotedBranch = branch.branchName, prepTask = "prepFinalRelease", promoteTask = branch.promoteFinalReleaseTaskName(), requiredConfirmationCode = "final", init = { id("Promotion_FinalRelease")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 3.5K bytes - Viewed (0) -
CONTRIBUTING.md
To sign off a single commit: `git commit --amend --signoff` To sign off one or multiple commits: `git rebase --signoff origin/master` Then force push your branch: `git push --force origin test-branch` ### Fixing sanity check failures after public API changes If your PR includes any changes to the Gradle Public API, it will cause the binary compatibility check to fail.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Nov 05 15:15:33 UTC 2024 - 15.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
import jetbrains.buildServer.configs.kotlin.triggers.schedule import vcsroots.gradlePromotionBranches class PublishNightlySnapshot(branch: VersionedSettingsBranch) : PublishGradleDistributionFullBuild( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), promoteTask = branch.promoteNightlyTaskName(), triggerName = "ReadyforNightly", vcsRootId = gradlePromotionBranches ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 2.6K bytes - Viewed (0) -
.github/workflows/CheckBadMerge.groovy
* * When merging `releaseX` branch into `master`, we should only use the release note from the `master` branch, * but sometimes changes on release notes.md was brought to master and merged unnoticed, * e.g https://github.com/gradle/gradle/pull/25825 * * This script is to check if there is any merge commit that brings changes from release branch to master. * Usage: groovy CheckBadMerge.groovy <commit1> <commit2> ...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 19 10:35:44 UTC 2023 - 6.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt
package promotion import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedbackStepPromote(branch: VersionedSettingsBranch) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(), triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches, cleanCheckout = false ) { init {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 09 14:10:43 UTC 2022 - 1.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
data class VersionedSettingsBranch(val branchName: String) { /** * 0~23. * To avoid nightly promotion jobs running at the same time, * we run each branch on different hours. * master - 0:00 * release - 1:00 * release6x - 2:00 * release7x - 3:00 * ... * releaseNx - (N-4):00 */
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 26 12:59:03 UTC 2024 - 3.2K bytes - Viewed (0)