Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for noscan (0.11 sec)

  1. src/runtime/traceback.go

    	_Gcopystack: "copystack",
    	_Gpreempted: "preempted",
    }
    
    func goroutineheader(gp *g) {
    	level, _, _ := gotraceback()
    
    	gpstatus := readgstatus(gp)
    
    	isScan := gpstatus&_Gscan != 0
    	gpstatus &^= _Gscan // drop the scan bit
    
    	// Basic string status
    	var status string
    	if 0 <= gpstatus && gpstatus < uint32(len(gStatusStrings)) {
    		status = gStatusStrings[gpstatus]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/build-scan-home.png

    build-scan-home.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 66.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/previous-next-scan.svg

    previous-next-scan.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-scan-1.png

    build-scan-1.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 264.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/build-scan-3.png

    build-scan-3.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 198.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/build-scan-infrastructure.png

    build-scan-infrastructure.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 81.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation.go

    		switch kc.MemorySwap.SwapBehavior {
    		case "":
    		case kubetypes.NoSwap:
    		case kubetypes.LimitedSwap:
    		default:
    			allErrors = append(allErrors, fmt.Errorf("invalid configuration: memorySwap.swapBehavior %q must be one of: \"\", %q or %q", kc.MemorySwap.SwapBehavior, kubetypes.LimitedSwap, kubetypes.NoSwap))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

        enum CI {
            TEAM_CITY(
                AbstractSmokeTest.TestedVersions.teamCityGradlePluginRef,
                "https://raw.githubusercontent.com/etiennestuder/teamcity-build-scan-plugin/%s/agent/src/main/resources/build-scan-init.gradle",
                "teamCityBuildScanPlugin"
            ),
            JENKINS(
                AbstractSmokeTest.TestedVersions.jenkinsGradlePluginRef,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-build-scan-plugin.png

    teamcity-build-scan-plugin.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    	var lastc *hchan
    	for sg := gp.waiting; sg != nil; sg = sg.waitlink {
    		if sg.c != lastc {
    			// There is a ranking cycle here between gscan bit and
    			// hchan locks. Normally, we only allow acquiring hchan
    			// locks and then getting a gscan bit. In this case, we
    			// already have the gscan bit. We allow acquiring hchan
    			// locks here as a special case, since a deadlock can't
    			// happen because the G involved must already be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top