Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wasForked (0.09 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            when:
            succeeds()
    
            then:
            wasForked()
    
            and:
            daemons.daemon.stops()
        }
    
        def "stops single use daemon when build fails"() {
            requireJvmArg('-Xmx64m')
    
            file('build.gradle') << "throw new RuntimeException('bad')"
    
            when:
            fails()
    
            then:
            wasForked()
            failureHasCause "bad"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/runtime/mranges.go

    // returns if the value was marked or not.
    func (b *atomicOffAddr) Load() (uintptr, bool) {
    	v := b.a.Load()
    	wasMarked := false
    	if v < 0 {
    		wasMarked = true
    		v = -v
    	}
    	return uintptr(v) + arenaBaseOffset, wasMarked
    }
    
    // addrRanges is a data structure holding a collection of ranges of
    // address space.
    //
    // The ranges are coalesced eagerly to reduce the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top