Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 910 for example2 (0.1 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. samples/bookinfo/src/docker-bake.hcl

    }
    
    images = [
      // Productpage
      {
        name   = "examples-bookinfo-productpage-v1"
        source = "productpage"
      },
      {
        name = "examples-bookinfo-productpage-v-flooding"
        args = {
          flood_factor = 100
        }
        source = "productpage"
      },
    
      // Details
      {
        name = "examples-bookinfo-details-v1"
        args = {
          service_version = "v1"
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. build/README.md

    The main output is a tar file: `kubernetes.tar.gz`.  This includes:
    * Cross compiled client utilities.
    * Script (`kubectl`) for picking and running the right client binary based on platform.
    * Examples
    * Cluster deployment scripts for various clouds
    * Tar file containing all server binaries
    
    In addition, there are some other tar files that are created:
    * `kubernetes-client-*.tar.gz` Client binaries for a specific platform.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    [exec:patch] ! exists go.sum
    
    -- go.mod --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/added v0.1.0 => ./a1
    	example.net/added v0.2.0 => ./a2
    	example.net/added v0.3.0 => ./a1
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/added v0.1.0
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

     *
     * <h2>Examples</h2>
     * <p>An example showing how to associate an archive task with a configuration via the artifact handler.
     * This way the archive can be published or referred in other projects via the configuration.
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    But still, it is very powerful, and allows you to declare arbitrarily deeply nested dependency "graphs" (trees).
    
    !!! tip
        All this might not seem as useful with these simple examples.
    
        But you will see how useful it is in the chapters about **security**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_vendor_auto.txt

    example.com/version
    -- $WORK/modules-bad-1.13.txt --
    # example.com/printversion v1.1.0
    example.com/printversion
    # example.com/version v1.1.0
    example.com/version
    -- $WORK/auto/vendor/example.com/printversion/go.mod --
    module example.com/printversion
    
    require example.com/version v1.0.0
    replace example.com/version v1.0.0 => ../oops v0.0.0
    exclude example.com/version v1.0.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top