Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,192 for Example (0.17 sec)

  1. src/cmd/compile/internal/test/testdata/pgo/inline/inline_hot.pprof.node_map

    GO PREPROFILE V1
    example.com/pgo/inline.A
    example.com/pgo/inline.(*BS).NS
    7 129
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    8 3
    example.com/pgo/inline.(*BS).NS
    example.com/pgo/inline.T
    13 2
    example.com/pgo/inline.benchmarkB
    example.com/pgo/inline.A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 267 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_deprecated.txt

    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    go list -m -u example.com/deprecated/a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_overlay.txt

    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    ! stdout example.com/c
    
    # control case for go.work on disk and in overlay:
    # go.work is on disk but not in overlay.
    cp go.work.non-overlay go.work
    go list -m
    stdout example.com/a
    stdout example.com/b
    stdout example.com/c
    
    # go.work on disk and in overlay.
    go list -overlay=overlay.json -m
    stdout example.com/a
    stdout example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 800 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModuleTest.groovy

            [name: "example"]                                       | null          | "example" | null
            [group: "com.example", name: "example"]                 | "com.example" | "example" | null
            [name: "example", version: "1.0"]                       | null          | "example" | "1.0"
            [group: "com.example", name: "example", version: "1.0"] | "com.example" | "example" | "1.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 23:56:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_test_cycle.txt

    stdout 'example/p'
    
    ! go list -json=ImportPath -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath,Deps -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath,Deps -deps -test ./p
    cmp stderr wanterr.txt
    
    ! go list -json=ImportPath -deps -test ./p
    cmp stderr wanterr.txt
    
    -- wanterr.txt --
    go: can't load test package: package example/p
    	imports example/q
    	imports example/r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 19:18:23 UTC 2023
    - 644 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_vendor_modules_txt_conditional.txt

    # example.com/b v0.0.0 => ./b
    ## explicit; go 1.21
    example.com/b
    # example.com/b => ./b
    -- go.work --
    go 1.21
    
    use .
    -- go.mod --
    module example.com/a
    
    go 1.21
    
    require example.com/b v0.0.0
    replace example.com/b => ./b
    -- a.go --
    package a
    
    import _ "example.com/b"
    -- b/go.mod --
    module example.com/b
    
    go 1.21
    -- b/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //     <URL>.getEscapedPath() <string>
    //     <URL>.getQuery() <map <string>, <list <string>>
    //
    // Examples:
    //
    //	url('/path').getScheme() // returns ''
    //	url('https://example.com/').getScheme() // returns 'https'
    //	url('https://example.com:80/').getHost() // returns 'example.com:80'
    //	url('https://example.com/').getHost() // returns 'example.com'
    //	url('https://[::1]:80/').getHost() // returns '[::1]:80'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/route_test.go

    			domains:  []string{"example.com", "example.com:8080", "[fd00:10:96::7fc7]", "[fd00:10:96::7fc7]:8080"},
    			expected: "example.com, [fd00:10:96::7fc7]",
    		},
    		{
    			desc:     "test with more domains",
    			domains:  []string{"example.com", "example.com:8080", "www.example.com", "www.example.com:8080", "[fd00:10:96::7fc7]", "[fd00:10:96::7fc7]:8080"},
    			expected: "example.com, www.example.com + 1 more...",
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_prune.txt

    	./a
    	./p
    )
    -- a/go.mod --
    module example.com/a
    
    go 1.18
    
    require example.com/b v1.0.0
    
    replace example.com/b v1.0.0 => ../b
    -- a/foo.go --
    package main
    
    import "example.com/b"
    
    func main() {
    	b.B()
    }
    -- b/go.mod --
    module example.com/b
    
    go 1.18
    
    require example.com/q v1.1.0
    
    replace example.com/q v1.0.0 => ../q1_0_0
    replace example.com/q v1.1.0 => ../q1_1_0
    -- b/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 14:30:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top