Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 666 for BAZ (0.03 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
            }
    
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list.toArray() == ['foo', 'bar', 'baz'] as String[]
            list.toArray(new String[0]) == ['foo', 'bar', 'baz'] as String[]
        }
    
        def "can check contents"() {
            when:
            mutate {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/path/filepath/example_unix_test.go

    	fmt.Println(filepath.Base(""))
    
    	// Output:
    	// On Unix:
    	// baz.js
    	// baz
    	// baz
    	// dev.txt
    	// todo.txt
    	// ..
    	// .
    	// /
    	// .
    }
    
    func ExampleDir() {
    	fmt.Println("On Unix:")
    	fmt.Println(filepath.Dir("/foo/bar/baz.js"))
    	fmt.Println(filepath.Dir("/foo/bar/baz"))
    	fmt.Println(filepath.Dir("/foo/bar/baz/"))
    	fmt.Println(filepath.Dir("/dirty//path///"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/returnExpressionTargetSymbol/normalReturn.kt

    fun foo() {
        return/* foo@(1,1) */
    }
    
    fun bar(): String {
        return/* bar@(5,1) */""
    }
    
    fun baz(): Int {
        if (true) {
            return/* baz@(9,1) */1
        } else {
            return/* baz@(9,1) */2
        }
    }
    
    fun quux(): Int {
        while(true) {
            return/* quux@(17,1) */1
        }
        return/* quux@(17,1) */2
    }
    
    fun test() {
        run {
            return/* test@(24,1) */
        }
        fun() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Nov 19 22:29:17 UTC 2021
    - 510 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ListElementSourceTest.groovy

            source.addPendingCollection(listProvider("baz", "buzz"))
            source.add("fizz")
            source.add("fuzz")
            source.realizePending()
    
            when:
            def iterator = source.listIterator()
    
            then:
            iterator.next() == "foo"
            iterator.next() == "bar"
            iterator.next() == "baz"
    
            then:
            iterator.previous() == "baz"
            iterator.previous() == "bar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 13 05:06:48 UTC 2020
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_issue_56509.txt

    # when it is included
    
    env GOARCH=arm64
    env GOOS=linux
    go build ./baz
    
    env GOARCH=amd64
    env GOOS=linux
    ! go build ./baz
    
    -- go.mod --
    module example.com/foo
    
    go 1.20
    -- bar/bar.s --
    ;/
    -- baz/baz.go --
    package bar
    -- baz/baz_amd64.s --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 21:02:24 UTC 2022
    - 740 bytes
    - Viewed (0)
  6. src/net/textproto/header_test.go

    	{"uSER-aGENT", "User-Agent"},
    	{"user-agent", "User-Agent"},
    	{"USER-AGENT", "User-Agent"},
    
    	// Other valid tchar bytes in tokens:
    	{"foo-bar_baz", "Foo-Bar_baz"},
    	{"foo-bar$baz", "Foo-Bar$baz"},
    	{"foo-bar~baz", "Foo-Bar~baz"},
    	{"foo-bar*baz", "Foo-Bar*baz"},
    
    	// Non-ASCII or anything with spaces or non-token chars is unchanged:
    	{"üser-agenT", "üser-agenT"},
    	{"a B", "a B"},
    
    	// This caused a panic due to mishandling of a space:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 18:21:01 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/UnixStartScriptGeneratorTest.groovy

            given:
            JavaAppStartScriptGenerationDetails details = createScriptGenerationDetails(['-Dfoo=bar baz', '-Xint'], 'bin')
            Writer destination = new StringWriter()
    
            when:
            generator.generateScript(details, destination)
    
            then:
            destination.toString().contains(/DEFAULT_JVM_OPTS='"-Dfoo=bar baz" "-Xint"'/)
        }
    
        def "defaultJvmOpts is expanded properly in unix script -- double quotes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_use.txt

    go 1.18
    
    use (
    	foo
    	foo/bar // doesn't exist
    )
    -- go.want_work_r --
    go 1.18
    
    use (
    	./foo
    	./foo/bar/baz
    )
    -- go.want_work_other --
    go 1.18
    
    use (
    	./foo
    	./foo/bar/baz
    	./other
    )
    -- foo/go.mod --
    module foo
    -- foo/bar/baz/go.mod --
    module baz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 504 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            group("org")                                                                                                   | groupSet("foo", "baz")                                                                                                | factory.nothing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/discovery_test.go

    		<meta name="go-import" content="baz/quux git http://github.com/rsc/baz/quux">`,
    		IgnoreMod,
    		[]metaImport{
    			{"foo/bar", "git", "https://github.com/rsc/foo/bar"},
    			{"baz/quux", "git", "http://github.com/rsc/baz/quux"},
    		},
    	},
    	{
    		`<meta name="go-import" content="foo/bar git https://github.com/rsc/foo/bar">
    		<meta name="go-import" content="foo/bar mod http://github.com/rsc/baz/quux">`,
    		IgnoreMod,
    		[]metaImport{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top