Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,852 for example1 (0.15 sec)

  1. src/internal/types/testdata/fixedbugs/issue39634.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Examples from the issue adjusted to match new [T any] syntax for type parameters.
    // Also, previously permitted empty type parameter lists and instantiations
    // are now syntax errors.
    //
    // The primary concern here is that these tests shouldn't crash the type checker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    // 	 - `uri`
    // 	 - `uuid`
    // 	 - `byte`
    // 	 - `date`
    // 	 - `datetime`
    //
    // format.<formatName>() -> Format
    //
    //  Convenience functions for all the named formats are also available
    //
    //  Examples:
    //      format.dns1123Label().validate("my-label-name")
    //      format.dns1123Subdomain().validate("apiextensions.k8s.io")
    //      format.dns1035Label().validate("my-label-name")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top