Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,210 for Example (0.14 sec)

  1. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

      hostnames:
        - "bar.com" # doesn't match abc-foo-example-com listener
        - "*.example.com" # becomes abc.foo.example.com as it cannot be less specific than abc.foo.example.com of the listener
        - "*.foo.example.com" # becomes abc.foo.example.com as it cannot be less specific than abc.foo.example.com of the listener
        - "abc.foo.example.com"
      rules:
        - matches:
            - path:
                type: PathPrefix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    stderr '^go: example\.net/m imports\n\texample\.net/w: package example\.net/w provided by example\.net/w at latest version v0\.1\.0 but not at required version v0\.2\.0-pre$'
    stderr '^go: example\.net/m imports\n\texample\.net/y: package example\.net/y provided by example\.net/y at latest version v0\.1\.0 but not at required version v0\.2\.0-pre$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_vendor_prune.txt

    stdout 'version 1.1.0'
    
    -- modules.txt.want --
    ## workspace
    # example.com/b v1.0.0 => ./b
    ## explicit; go 1.18
    example.com/b
    # example.com/q v1.0.0 => ./q1_0_0
    ## explicit; go 1.18
    # example.com/q v1.1.0 => ./q1_1_0
    ## go 1.18
    example.com/q
    -- go.work --
    go 1.18
    
    use (
    	./a
    	./p
    )
    -- a/go.mod --
    module example.com/a
    
    go 1.18
    
    require example.com/b v1.0.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. .idea/encodings.xml

        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example/src/main/resources" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/js-example" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/js-example/src/main/kotlin" charset="UTF-8" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 22 14:23:18 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

        ./a
        ./b
    )
    -- a/go.mod --
    module example.com/a
    
    go 1.21
    
    require example.com/p v1.0.0
    
    replace example.com/p v1.0.0 => ../p
    -- a/a.go --
    package p
    -- b/go.mod --
    module example.com/b
    
    go 1.21
    
    require example.com/q v1.0.0
    
    replace example.com/q v1.0.0 => ../q
    -- b/b.go --
    package b
    -- p/go.mod --
    module example.com/p
    
    go 1.21
    -- q/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_graph_version.txt

    # but should not edit the go.mod file.
    
    go mod graph -go=1.16
    cp stdout graph-1.16.txt
    stdout '^example\.com/m example\.com/retract/incompatible@v1\.0\.0$'
    stdout '^example\.net/lazy@v0\.1\.0 example.com/retract/incompatible@v1\.0\.0$'
    stdout '^example.net/requireincompatible@v0.1.0 example.com/retract/incompatible@v2\.0\.0\+incompatible$'
    
    cmp go.mod go.mod.orig
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 21:10:42 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_goline.txt

    stderr '^go: downgraded example.com/a v1.0.2 => v1.0.1$'
    stderr '^go: downgraded example.com/b v1.0.2 => v1.0.1$'
    go list -f '{{.Module.GoVersion}}'
    stdout 1.24.2
    
    -- go.mod --
    module m
    go 1.21
    
    require (
    	example.com/a v1.0.0
    	example.com/b v0.9.0
    )
    
    replace example.com/a v1.0.0 => ./a100
    replace example.com/a v1.0.1 => ./a101
    replace example.com/a v1.0.2 => ./a102
    replace example.com/b v1.0.1 => ./b101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_embed.txt

    ! exists vendor/example.com/a/subdir/test/embed.txt
    ! exists vendor/example.com/a/subdir/test/xtest/embed.txt
    -- embed_go122/go.mod --
    module example.com/foo
    go 1.22
    
    require (
    	example.com/a v0.1.0
    )
    
    replace (
    	example.com/a v0.1.0 => ../a
    )
    -- embed_go122/foo.go --
    package main
    
    import (
    	"fmt"
    
    	"example.com/a"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/internal/types/errors/codes_test.go

    		t.Run(name, func(t *testing.T) {
    			doc := spec.Doc.Text()
    			examples := strings.Split(doc, "Example:")
    			for i := 1; i < len(examples); i++ {
    				example := strings.TrimSpace(examples[i])
    				err := checkExample(t, example)
    				if err == nil {
    					t.Fatalf("no error in example #%d", i)
    				}
    				typerr, ok := err.(Error)
    				if !ok {
    					t.Fatalf("not a types.Error: %v", err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.pprof.node_map

    GO PREPROFILE V1
    example.com/pgo/devirtualize.ExerciseFuncConcrete
    example.com/pgo/devirtualize.AddFn
    48 103
    example.com/pgo/devirtualize.ExerciseFuncField
    example.com/pgo/devirtualize.AddFn
    23 101
    example.com/pgo/devirtualize.ExerciseFuncField
    example.com/pgo/devirtualize/mult%2epkg.MultFn
    23 94
    example.com/pgo/devirtualize.ExerciseFuncClosure
    example.com/pgo/devirtualize/mult%2epkg.MultClosure.func1
    18 93
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top