Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for checkRanks (0.26 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/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. 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)
Back to top