Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for promoteRc (0.17 sec)

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

            id("Promotion_FinalRelease")
            name = "Release - Final"
            description = "Promotes the latest successful change on 'release' as a new release"
        }
    )
    
    class PublishReleaseCandidate(branch: VersionedSettingsBranch) : PublishRelease(
        promotedBranch = branch.branchName,
        prepTask = "prepRc",
        promoteTask = "promoteRc",
        requiredConfirmationCode = "rc",
        init = {
            id("Promotion_ReleaseCandidate")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            val upload = gradleStep(steps, 1)
            upload.assertTasks("prepRc uploadAll")
            assertEquals(expectedGradleParams, upload.gradleParams)
    
            val promote = gradleStep(steps, 2)
            promote.assertTasks("prepRc promoteRc")
            assertEquals(expectedGradleParams, upload.gradleParams)
        }
    
        @ParameterizedTest
        @CsvSource(
            value = [
                "master,  promoteMilestone",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. releasenotes/notes/cni-promote.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/istio/enhancements/issues/86
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 05 06:01:10 UTC 2021
    - 174 bytes
    - Viewed (0)
  4. .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(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 14:10:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

    import jetbrains.buildServer.configs.kotlin.FailureAction
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionMaster
    
    abstract class BasePublishGradleDistribution(
        // The branch to be promoted
        val promotedBranch: String,
        val prepTask: String?,
        val triggerName: String,
        val gitUserName: String = "bot-teamcity",
        val gitUserEmail: String = "******@****.***",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. .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"
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

                        triggerRules = "+:root=${VersionedSettingsBranch.fromDslContext().vcsRootId()}:."
                        // The promotion itself will be triggered on gradle-promote's master branch
                        branchFilter = "+:master"
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args_functions.mlir

        %4 = "tf.Pack"(%0, %3) : (tensor<f32>, tensor<f32>) -> tensor<2xf32>
        func.return %4 : tensor<2xf32>
      }
    
      // One resource, one read. _is_initialized is true, should be promoted.
      // CHECK-LABEL: func @read(%arg0: tensor<f32> {tf.resource_name = "x"}) -> tensor<f32>
      func.func @read() -> tensor<f32> {
        // CHECK-NOT: "tf.VarHandleOp"
        // CHECK-NOT: "tf.ReadVariableOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

    object StartReleaseCycle : BasePromotionBuildType(vcsRootId = gradlePromotionMaster) {
        init {
            id("Promotion_StartReleaseCycle")
            name = "Start Release Cycle"
            description = "Promotes a successful build on master as the start of a new release cycle on the release branch"
    
            params {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/etcd/etcd.go

    	return false, nil
    }
    
    // MemberPromote promotes a member as a voting member. If the given member ID is already a voting member this method
    // will return early and do nothing.
    func (c *Client) MemberPromote(learnerID uint64) error {
    	isLearner, err := c.isLearner(learnerID)
    	if err != nil {
    		return err
    	}
    	if !isLearner {
    		klog.V(1).Infof("[etcd] Member %s already promoted.", strconv.FormatUint(learnerID, 16))
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top