Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for checkRanks (0.19 sec)

  1. 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)
  2. .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)
  3. src/runtime/mcheckmark.go

    var useCheckmark = false
    
    // startCheckmarks prepares for the checkmarks phase.
    //
    // The world must be stopped.
    func startCheckmarks() {
    	assertWorldStopped()
    
    	// Clear all checkmarks.
    	for _, ai := range mheap_.allArenas {
    		arena := mheap_.arenas[ai.l1()][ai.l2()]
    		bitmap := arena.checkmarks
    
    		if bitmap == nil {
    			// Allocate bitmap on first use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. .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)
  5. 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)
  6. src/path/filepath/path_test.go

    				return
    			}
    			fd.Close()
    		} else {
    			os.Mkdir(path, 0770)
    		}
    	})
    }
    
    func markTree(n *Node) { walkTree(n, "", func(path string, n *Node) { n.mark++ }) }
    
    func checkMarks(t *testing.T, report bool) {
    	walkTree(tree, tree.name, func(path string, n *Node) {
    		if n.mark != 1 && report {
    			t.Errorf("node %s mark = %d; expected 1", path, n.mark)
    		}
    		n.mark = 0
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// Reads are done atomically to find spans containing specials
    	// during marking.
    	pageSpecials [pagesPerArena / 8]uint8
    
    	// checkmarks stores the debug.gccheckmark state. It is only
    	// used if debug.gccheckmark > 0.
    	checkmarks *checkmarksMap
    
    	// zeroedBase marks the first byte of the first page in this
    	// arena which hasn't been used yet and is therefore already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top