Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 858 for example2 (0.2 sec)

  1. docs/en/docs/tutorial/request-forms.md

    With `Form` you can declare the same configurations as with `Body` (and `Query`, `Path`, `Cookie`), including validation, examples, an alias (e.g. `user-name` instead of `username`), etc.
    
    !!! info
        `Form` is a class that inherits directly from `Body`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/async-sql-encode-databases.md

    It is compatible with:
    
    * PostgreSQL
    * MySQL
    * SQLite
    
    In this example, we'll use **SQLite**, because it uses a single file and Python has integrated support. So, you can copy this example and run it as is.
    
    Later, for your production application, you might want to use a database server like **PostgreSQL**.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. manifests/charts/README.md

    of the conventional `istio-injected: true`. The name of the environment is defined as the namespace
    where the corresponding control plane components (config, discovery, auto-injection) are running.
    In the examples below, by default this is the `istio-control` namespace. Pod annotations can also
    be used to select a different 'environment'.
    
    ## Installing
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. hack/pin-dependency.sh

            ;;
    esac
    
    if [[ -z "${dep}" || -z "${replacement}" || -z "${sha}" ]]; then
      echo "Usage:"
      echo "  hack/pin-dependency.sh \$MODULE[=\$REPLACEMENT] \$SHA-OR-TAG"
      echo ""
      echo "Examples:"
      echo "  hack/pin-dependency.sh github.com/docker/docker 501cb131a7b7"
      echo "  hack/pin-dependency.sh github.com/docker/docker=github.com/johndoe/docker my-experimental-branch"
      echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    		Short:   "Updates settings relevant to the kubelet after TLS bootstrap",
    		Example: kubeletFinalizePhaseExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Run all kubelet-finalize phases",
    				InheritFlags:   []string{options.CfgPath, options.CertificatesDir, options.DryRun},
    				Example:        kubeletFinalizePhaseExample,
    				RunAllSiblings: true,
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/kubeconfig.go

    var (
    	kubeconfigLongDesc = cmdutil.LongDesc(`
    	Kubeconfig file utilities.
    	`)
    
    	userKubeconfigLongDesc = cmdutil.LongDesc(`
    	Output a kubeconfig file for an additional user.
    	`)
    
    	userKubeconfigExample = cmdutil.Examples(`
    	# Output a kubeconfig file for an additional user named foo
    	kubeadm kubeconfig user --client-name=foo
    
    	# Output a kubeconfig file for an additional user named foo using a kubeadm config file bar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top