Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,910 for example1 (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * For example, if the {@link #obtain()} method calls {@code System.getenv("FOO")} then changes to
     * the {@code FOO} environment variable only invalidate the cache if the value returned by the
     * {@code obtain()} method itself changes. The same applies to reading files or system properties.
     * Starting an external process with a standard API (for example, {@code java.lang.ProcessBuilder}) is
     * also allowed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-nested-models.md

    To see all the options you have, checkout the docs for <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic's exotic types</a>. You will see some examples in the next chapter.
    
    For example, as in the `Image` model we have a `url` field, we can declare it to be an instance of Pydantic's `HttpUrl` instead of a `str`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="2  8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.psi.KtCallElement
    
    /**
     * Application of annotation to some declaration, type, or as argument inside another annotation.
     *
     * Some examples:
     * - For declarations: `@Deprecated("Should not be used") fun foo(){}`
     * - For types: `fun foo(x: List<@A Int>){}`
     * - Inside another annotation (`B` is annotation here): `@A(B()) fun foo(){}
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top