Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for checkLinks (0.75 sec)

  1. .teamcity/src/main/kotlin/configurations/CheckLinks.kt

    import model.CIBuildModel
    import model.Stage
    
    class CheckLinks(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, failStage = false, init = {
        id("${model.projectId}_CheckLinks")
        name = "CheckLinks"
        description = "Check links in documentations"
    
        applyDefaults(
            model,
            this,
            ":docs:checkLinks",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 16 06:11:31 UTC 2021
    - 502 bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. test/slicecap.go

    		y := x[4:]
    		checkBytes("y[1:]", y[1:])
    	}
    	{
    		x := ints
    		checkInts("x", x)
    		checkInts("x[5:]", x[5:])
    		checkInts("x[five:]", x[five:])
    		checkInts("x[5:five]", x[5:five])
    		checkInts("x[five:5]", x[five:5])
    		checkInts("x[five:five]", x[five:five])
    		checkInts("x[1:][2:][2:]", x[1:][2:][2:])
    		y := x[4:]
    		checkInts("y[1:]", y[1:])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  5. 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