Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 590 for branchy (0.13 sec)

  1. .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)
  2. src/cmd/compile/internal/ssa/branchelim.go

    		// because the load address would now be data-dependent on the condition.
    		// Previously it would only be control-dependent on the condition, which is faster
    		// if the branch predicts well (or possibly even if it doesn't, if the load will
    		// be an expensive cache miss).
    		// See issue #26306.
    		return false
    	}
    	if arch == "loong64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. 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)
  6. hack/verify-publishing-bot.py

            branch = rule["branches"][0]
    
            # If this no longer exists in master
            if rule["destination"] not in gomod_dependencies:
                # Make sure we don't include a rule to publish it from master
                for branch in rule["branches"]:
                    if branch["name"] == "master":
                        raise Exception("cannot find master branch for destination %s" % rule["destination"])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/x86/ssa.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = x86.REG_AX
    		p = s.Prog(x86.AJNE)
    		p.To.Type = obj.TYPE_BRANCH
    		s.Branches = append(s.Branches, ssagen.Branch{P: p, B: b.Succs[1].Block()})
    		if b.Succs[0].Block() != next {
    			p := s.Prog(obj.AJMP)
    			p.To.Type = obj.TYPE_BRANCH
    			s.Branches = append(s.Branches, ssagen.Branch{P: p, B: b.Succs[0].Block()})
    		}
    	case ssa.BlockExit, ssa.BlockRetJmp:
    	case ssa.BlockRet:
    		s.Prog(obj.ARET)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute.go

    	// a stable-1.8 branch doesn't exist yet. Hence this check.
    	if patchVersionBranchExists(clusterVersion, stableVersion) {
    		currentBranch := getBranchFromVersion(clusterVersionStr)
    		versionLabel := fmt.Sprintf("stable-%s", currentBranch)
    		description := fmt.Sprintf("version in the v%s series", currentBranch)
    
    		// Get and output the latest patch version for the cluster branch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/PluginTree.kt

                var branch = root
                groupPath.forEachIndexed { index, segment ->
                    when (val group = branch[segment]) {
                        null -> {
                            val newGroupMap = linkedMapOf<String, PluginTree>()
                            val newGroup = PluginGroup(groupPath.take(index + 1), newGroupMap)
                            branch[segment] = newGroup
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top