Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkLinks (0.28 sec)

  1. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                return Gradleception(model, stage, JvmCategory.MAX_LTS_VERSION, "MaxLts")
            }
        },
        CheckLinks {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return CheckLinks(model, stage)
            }
        },
        TestPerformanceTest {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

             "-DintegTest.gradleUserHomeDir=${repoRoot.dir("intTestHomeDir/$distributionName")}"]
        }
    }
    
    tasks.withType(CheckLinks).configureEach {
        enabled = !gradle.startParameter.taskNames.contains("docs:docsTest")
    }
    
    tasks.register("checkLinks") {
        dependsOn(tasks.withType(CheckLinks))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. src/runtime/lockrank_on.go

    		gp.m.locksHeldLen++
    
    		// i is the index of the lock being acquired
    		if i > 0 {
    			checkRanks(gp, gp.m.locksHeld[i-1].rank, rank)
    		}
    	})
    }
    
    // checkRanks checks if goroutine g, which has mostly recently acquired a lock
    // with rank 'prevRank', can now acquire a lock with rank 'rank'.
    //
    //go:systemstack
    func checkRanks(gp *g, prevRank, rank lockRank) {
    	rankOK := false
    	if rank < prevRank {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top