Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,849 for example1 (0.17 sec)

  1. manifests/charts/gateway/README.md

    See [Controlling the injection policy](https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#controlling-the-injection-policy) for more info.
    
    ### Examples
    
    #### Egress Gateway
    
    Deploying a Gateway to be used as an [Egress Gateway](https://istio.io/latest/docs/tasks/traffic-management/egress/egress-gateway/):
    
    ```yaml
    service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/log/slog/level.go

    )
    
    // String returns a name for the level.
    // If the level has a name, then that name
    // in uppercase is returned.
    // If the level is between named values, then
    // an integer is appended to the uppercased name.
    // Examples:
    //
    //	LevelWarn.String() => "WARN"
    //	(LevelInfo+2).String() => "INFO+2"
    func (l Level) String() string {
    	str := func(base string, val Level) string {
    		if val == 0 {
    			return base
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. okhttp-tls/README.md

    ```
    
    With a server that holds a certificate and a client that trusts it we have enough for an HTTPS
    handshake. The best part of this example is that we don't need to make our test code insecure with a
    a fake `HostnameVerifier` or `X509TrustManager`.
    
    Certificate Authorities
    -----------------------
    
    The above example uses a self-signed certificate. This is convenient for testing but not
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
      // Returns a pointer to the last occurrence of a valid path separator in
      // the FilePath. On Windows, for example, both '/' and '\' are valid path
      // separators. Returns NULL if no path separator was found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
      // Returns a pointer to the last occurrence of a valid path separator in
      // the FilePath. On Windows, for example, both '/' and '\' are valid path
      // separators. Returns NULL if no path separator was found.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/README.md

    a subdirectory with the code of the error message, and add a `index.md` file that contains the
    full description of the problem with potential remediation steps, examples, etc. See the existing
    files in that directory for examples of how this is done.
    
    ## FAQ
    
    ### What if I need a resource not available as a collection?
    
    Please open an issue (directed at the "Configuration" product area) or visit the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/gover/gover.go

    }
    
    // Prev returns the Go major release immediately preceding v,
    // or v itself if v is the first Go major release (1.0) or not a supported
    // Go version.
    //
    // Examples:
    //
    //	Prev("1.2") = "1.1"
    //	Prev("1.3rc4") = "1.2"
    func Prev(x string) string {
    	v := gover.Parse(x)
    	if gover.CmpInt(v.Minor, "1") <= 0 {
    		return v.Major
    	}
    	return v.Major + "." + gover.DecInt(v.Minor)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    The project path is assumed to be equal to the relative physical file system path.
    For example, a path `services:api` is mapped by default to a folder `./services/api` (relative to the project root `.`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/errors/example_test.go

    	}
    	// Output:
    	// err1
    	// err2
    	// err is err1
    	// err is err2
    }
    
    func ExampleIs() {
    	if _, err := os.Open("non-existing"); err != nil {
    		if errors.Is(err, fs.ErrNotExist) {
    			fmt.Println("file does not exist")
    		} else {
    			fmt.Println(err)
    		}
    	}
    
    	// Output:
    	// file does not exist
    }
    
    func ExampleAs() {
    	if _, err := os.Open("non-existing"); err != nil {
    		var pathError *fs.PathError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 02:08:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-fields.md

    You will learn more about adding extra information later in the docs, when learning to declare examples.
    
    !!! warning
        Extra keys passed to `Field` will also be present in the resulting OpenAPI schema for your application.
        As these keys may not necessarily be part of the OpenAPI specification, some OpenAPI tools, for example [the OpenAPI validator](https://validator.swagger.io/), may not work with your generated schema.
    
    ## Recap
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top