Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 604 for baz2 (0.1 sec)

  1. pkg/config/host/name_test.go

    		{"long wildcard does not match short host", "*.foo.bar.baz", "baz", false},
    		{"long wildcard does not match short host - order doesn't matter", "baz", "*.foo.bar.baz", false},
    		{"long wildcard matches short wildcard", "*.foo.bar.baz", "*.baz", true},
    		{"long name matches short wildcard", "foo.bar.baz", "*.baz", true},
    	}
    
    	for idx, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_use_dot.txt

    cp ../../go.work.orig ../../go.work
    ! go work use $PWD .
    stderr '^go: already added "\./bar/baz" as "'$PWD'"$'
    cmp ../../go.work ../../go.work.orig
    
    
    -- go.mod --
    module example
    go 1.18
    -- go.work --
    go 1.18
    -- go.work.rel --
    go 1.18
    
    use ./bar/baz
    -- bar/baz/go.mod --
    module example/bar/baz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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