Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,232 for Example (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/script/mod_tidy_error.txt

    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_goline_old.txt

    replace example.com/b v1.0.0 => ./b100
    replace example.com/b v0.9.0 => ./b100
    
    -- x.go --
    package m
    
    import (
    	_ "example.com/a"
    	_ "example.com/b"
    )
    
    -- a100/go.mod --
    module example.com/a
    go 1.16
    
    require example.com/b v1.0.0
    
    -- a100/a.go --
    package a
    
    -- a101/go.mod --
    module example.com/a
    go 1.17
    
    require example.com/b v1.0.1
    
    -- a101/a.go --
    package a
    
    -- b100/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 1011 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      hosts:
      - '*.example.com'
      http:
      - match:
        - uri:
            prefix: /abc-foo-example-com
        name: gateway-conformance-infra.attaches-to-abc-foo-example-com-with-hostname-intersection.0
        route:
        - destination:
            host: infra-backend-v1.gateway-conformance-infra.svc.domain.suffix
            port:
              number: 8080
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: reading http.*/mod/example\.com/cmd/@v/v1.1.0-doesnotexist.info: 404 Not Found\n\tserver response: 404 page not found$'
    stderr '^go: example.com/cmd@v1.1.0-doesnotexist: missing go.sum entry for go.mod file; to add it:\n\tgo mod download example.com/cmd$'
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    cmp go.mod go.mod.orig
    cd ..
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_export_e.txt

    ! go list -export ./...
    stderr '^# example.com/p2\np2'${/}'main\.go:7:.*'
    ! stderr '^go build '
    
    go list -f '{{with .Error}}{{.}}{{end}}' -e -export ./...
    ! stderr '.'
    stdout '^# example.com/p2\np2'${/}'main\.go:7:.*'
    
    go list -export -e -f '{{.ImportPath}} -- {{.Incomplete}} -- {{.Error}}' ./...
    stdout 'example.com/p1 -- false -- <nil>'
    stdout 'example.com/p2 -- true -- # example.com/p2'
    
    go list -e -export -json=Error ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 17:54:46 UTC 2023
    - 654 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    // Module m indirectly imports a package from
    // example.com/retract/incompatible. Its selected version of
    // that module is lower under Go 1.17 semantics than under Go 1.16.
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/requireincompatible v0.1.0 => ./requireincompatible
    )
    
    require example.net/lazy v0.1.0
    
    require example.com/retract/incompatible v1.0.0 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    Available software types:
    
    application (com.example.restricted.ApplicationExtension)
            Defined in: com.example.restricted.ApplicationPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    library (com.example.restricted.LibraryExtension)
            Defined in: com.example.restricted.LibraryPlugin
            Registered by: com.example.restricted.SoftwareTypeRegistrationPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top