Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for createLink (0.11 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        def "can execute generated Unix start script using JAVA_HOME with spaces"() {
            given:
            def testJavaHome = file("javahome/java home with spaces")
            testJavaHome.createLink(Jvm.current().javaHome)
    
            when:
            succeeds('installDist')
    
            then:
            file('build/install/sample').exists()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    		}
    	}
    }
    
    func wakefing() *g {
    	if ok := fingStatus.CompareAndSwap(fingCreated|fingWait|fingWake, fingCreated); ok {
    		return fing
    	}
    	return nil
    }
    
    func createfing() {
    	// start the finalizer goroutine exactly once
    	if fingStatus.Load() == fingUninitialized && fingStatus.CompareAndSwap(fingUninitialized, fingCreated) {
    		go runfinq()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.message == TextUtil.toPlatformLineSeparators("""Multiple services of type Comparable available in DefaultServiceRegistry:
       - Service Integer at DefaultServiceRegistryTest\$TestProvider.createInt()
       - Service String at DefaultServiceRegistryTest\$TestProvider.createString()""")
        }
    
        def failsWhenArrayClassRequested() {
            when:
            registry.get(String[].class)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
Back to top