Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for setRelease (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        def setup() {
            settingsFile << """
                rootProject.name = 'test'
            """
        }
    
        abstract String getDebug()
    
        abstract String getFree()
    
        abstract String getRelease()
    
        abstract String getPaid()
    
        def "selects configuration in target project which matches the configuration attributes"() {
            given:
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  2. src/runtime/metrics_test.go

    			if profileGrowth > timerSlop*metricGrowth || metricGrowth > timerSlop*profileGrowth {
    				t.Errorf("views differ by more than %fx", timerSlop)
    			}
    		})
    	})
    
    	t.Run("runtime.semrelease", func(t *testing.T) {
    		testenv.SkipFlaky(t, 64253)
    
    		old := runtime.SetMutexProfileFraction(1)
    		defer runtime.SetMutexProfileFraction(old)
    
    		const workers = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    }
    
    // startTheWorldGC undoes the effects of stopTheWorldGC.
    //
    // w must be the worldStop returned by stopTheWorld.
    func startTheWorldGC(w worldStop) {
    	startTheWorld(w)
    	semrelease(&gcsema)
    }
    
    // Holding worldsema grants an M the right to try to stop the world.
    var worldsema uint32 = 1
    
    // Holding gcsema grants the M the right to block a GC, and blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top