Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,286 for wrench (0.18 sec)

  1. hack/cherry_pick_pull.sh

      exit 1
    fi
    
    if [[ "$#" -lt 2 ]]; then
      echo "${0} <remote branch> <pr-number>...: cherry pick one or more <pr> onto <remote branch> and leave instructions for proposing pull request"
      echo
      echo "  Checks out <remote branch> and handles the cherry-pick of <pr> (possibly multiple) for you."
      echo "  Examples:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

            val triggerName = this.triggerName
    
            params {
                param("branch.qualifier", "%dep.${RelativeId("Check_Stage_${triggerName}_Trigger")}.teamcity.build.branch%")
                text(
                    "branch.to.promote",
                    "%branch.qualifier%",
                    label = "Branch to promote",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 04:36:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  5. .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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 14:10:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMutableVersionConstraint.java

            return new DefaultImmutableVersionConstraint(preferredVersion, requiredVersion, strictVersion, rejectedVersions, branch);
        }
    
        @Nullable
        @Override
        public String getBranch() {
            return branch;
        }
    
        @Override
        public void setBranch(@Nullable String branch) {
            this.branch = branch;
        }
    
        @Override
        public String getRequiredVersion() {
            return requiredVersion;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

            fun fromDslContext(): VersionedSettingsBranch {
                val branch = DslContext.getParameter("Branch")
                // TeamCity uses a dummy name when first running the DSL
                if (branch.contains("placeholder-1")) {
                    return VersionedSettingsBranch(MASTER_BRANCH)
                }
                return VersionedSettingsBranch(branch)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/tasks/DetermineBaselinesTest.kt

            // then
            verifyBaselineDetermination("my-branch", false, null, "5.1-commit-master-fork-point")
        }
    
        @Test
        fun `uses configured version on master branch`() {
            verifyBaselineDetermination("master", false, defaultPerformanceBaselines, defaultPerformanceBaselines)
        }
    
        @Test
        fun `uses configured version when it is overwritten on feature branch`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. hack/verify-publishing-bot.py

            if branch["source"]["branch"] != "master":
                raise Exception("cannot find master source branch for destination %s" % rule["destination"])
    
            # we specify the go version for all master branches through `default-go-version`
            # so ensure we don't specify explicit go version for master branch in rules
            if "go" in branch:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyModuleDescriptor.java

        private final String branch;
        private final String ivyStatus;
        private final IvyExtraInfo extraInfo;
    
        public DefaultIvyModuleDescriptor(Map<NamespaceId, String> extraInfo, @Nullable String branch, String ivyStatus) {
            this.extraInfo = new DefaultIvyExtraInfo(extraInfo);
            this.branch = branch;
            this.ivyStatus = ivyStatus;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top