Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for sunny (0.03 sec)

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

            assert System.getProperty("java.vendor") != "hollywood"
            assert System.getProperty("java.vendor") != null
            assert System.getProperty("sun.sunny") == null
        }
    }
            """
    
            expect:
            executer.withBuildJvmOpts("-Djava.vendor=hollywood", "-Dsun.sunny=california").withTasks("verify").run()
        }
    
        def "other client JVM system properties are carried over to daemon JVM"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. test/ddd1.go

    	_ = sum3(tuple())
    	_ = sum3(tuple()...) // ERROR "\.{3} in call to non-variadic|multiple-value|invalid use of .*[.][.][.]"
    )
    
    type T []T
    
    func funny(args ...T) int { return 0 }
    
    var (
    	_ = funny(nil)
    	_ = funny(nil, nil)
    	_ = funny([]T{}) // ok because []T{} is a T; passes []T{[]T{}}
    )
    
    func Foo(n int) {}
    
    func bad(args ...int) {
    	print(1, 2, args...)	// ERROR "[.][.][.]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 22:28:39 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    [!GOEXPERIMENT:coverageredesign] skip
    
    go test -short -cover -covermode=atomic -coverpkg=coverdep/p1 coverdep
    
    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec.groovy

            when:
            run("test")
    
            then:
            noExceptionThrown()
        }
    
        // This is named funny to keep the path to the project
        // under Windows's limits.  This checks that we can use
        // ServletCategory as an extension class when compiling
        // Groovy code.
        @Issue("GRADLE-3235")
        def gradle3235() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. test/indirect1.go

    var a0 [10]int
    var a1 *[10]int
    var a2 *[10]int = &a0
    
    var b0 []int
    var b1 *[]int
    var b2 *[]int = &b0
    var b3 []int = []int{1, 2, 3}
    var b4 *[]int = &b3
    
    func f() {
    	// this is spaced funny so that
    	// the compiler will print a different
    	// line number for each len call when
    	// it decides there are type errors.
    	x :=
    		len(m0)+
    		len(m1)+	// ERROR "illegal|invalid|must be"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  6. test/indirect.go

    var b4 *[]int = &b3
    
    func crash() {
    	// these uses of nil pointers
    	// would crash but should type check
    	println("crash",
    		len(a1)+cap(a1))
    }
    
    func nocrash() {
    	// this is spaced funny so that
    	// the compiler will print a different
    	// line number for each len call if
    	// it decides there are type errors.
    	// it might also help in the traceback.
    	x :=
    		len(m0) +
    			len(m3)
    	if x != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gcflags_patterns.txt

    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to current directory
    cd my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to current directory even if GOPATH is funny
    [!case-sensitive] cd $WORK/GoPath/src/my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    # cgo.a should not be a dependency of internally-linked go package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    ara","skellefteå","skinnskatteberg","skurup","skövde","smedjebacken","sollefteå","sollentuna","solna","sorsele","sotenäs","staffanstorp","stenungsund","stockholm","storfors","storuman","strängnäs","strömstad","strömsund","sundbyberg","sundsvall","sunne","surahammar","svalöv","svedala","svenljunga","säffle","säter","sävsjö","söderhamns","söderköping","södertälje","sölvesborg","tanum","tibro","tidaholm","tierp","timrå","tingsryd","tjörn","tomelilla","torsby","torså","tranemo","tranå","trelleborg",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # non-standard host objects.
    #
    # As of 1.21 we continue to use internal linking for programs whose
    # CGO use comes only from stdlib packages in the absence of any flag
    # funny business, however if the Go command sees flags that may be suspicious,
    # it signals the Go linker to invoke the external linker.
    
    # The next few tests run builds passing "-n" to the Go command, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/api.go

    	if !utf8.ValidString(s) {
    		return "" // Don't try to recover non-UTF-8 error messages.
    	}
    	for _, r := range s {
    		if !unicode.IsGraphic(r) && !unicode.IsSpace(r) {
    			return "" // Don't let the server do any funny business with the user's terminal.
    		}
    	}
    
    	var detail strings.Builder
    	for i, line := range strings.Split(s, "\n") {
    		if strings.TrimSpace(line) == "" {
    			break // Stop at the first blank line.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top