Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 371 for Automatic (0.15 sec)

  1. docs/en/docs/advanced/openapi-webhooks.md

    ```Python hl_lines="9-13  36-53"
    {!../../../docs_src/openapi_webhooks/tutorial001.py!}
    ```
    
    The webhooks that you define will end up in the **OpenAPI** schema and the automatic **docs UI**.
    
    !!! info
        The `app.webhooks` object is actually just an `APIRouter`, the same type you would use when structuring your app with multiple files.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/modfile_flag.txt

    go list -mod=mod .
    grep rsc.io/quote go.alt.mod
    go build -n -mod=mod .
    go test -n -mod=mod .
    go get rsc.io/quote
    
    
    # 'go mod vendor' should work.
    go mod vendor
    exists vendor
    
    # Automatic vendoring should be broken by editing an explicit requirement
    # in the alternate go.mod file.
    go mod edit -require rsc.io/quote@v1.5.1
    ! go list .
    go list -mod=mod
    rm vendor
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //	}
    //
    // # Specifying printf wrappers by flag
    //
    // The -funcs flag specifies a comma-separated list of names of
    // additional known formatting functions or methods. (This legacy flag
    // is rarely used due to the automatic inference described above.)
    //
    // If the name contains a period, it must denote a specific function
    // using one of the following forms:
    //
    //	dir/pkg.Function
    //	dir/pkg.Type.Method
    //	(*dir/pkg.Type).Method
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLauncherSessionListenerIntegrationTest.groovy

                public class MyTest {
                    @org.junit.jupiter.api.Test
                    public void myTest() { }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/extra-data-types.md

    And you will still have the same features as seen up to now:
    
    * Great editor support.
    * Data conversion from incoming requests.
    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Here are some of the additional data types you can use:
    
    * `UUID`:
        * A standard "Universally Unique Identifier", common as an ID in many databases and systems.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/response-directly.md

    But you can still document it as described in [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_go_version_missing.txt

    cp go.mod go.mod.orig
    
    # For modules whose go.mod file does not include a 'go' directive,
    # we assume the language and dependency semantics of Go 1.16,
    # but do not trigger “automatic vendoring” mode (-mod=vendor),
    # which was added in Go 1.14 and was not triggered
    # under the same conditions in Go 1.16 (which would instead
    # default to -mod=readonly when no 'go' directive is present).
    
    # For Go 1.16 modules, 'all' should prune out dependencies of tests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/doc.go

    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    		with gofmt's version. If an error occurred during overwriting,
    		the original file is restored from an automatic backup.
    
    Debugging support:
    
    	-cpuprofile filename
    		Write cpu profile to the specified file.
    
    The rewrite rule specified with the -r flag must be a string of the form:
    
    	pattern -> replacement
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. docs/site-replication/README.md

    # Automatic Site Replication
    
    This feature allows multiple independent MinIO sites (or clusters) that are using the same external IDentity Provider (IDP) to be configured as replicas. In this situation the set of replica sites are referred to as peer sites or just sites. When site-replication is enabled on a set of sites, the following changes are replicated to all other sites:
    
    - Creation and deletion of buckets and objects
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

                  path: istio-token
          - configMap:
              name: istio-ca-root-cert
            name: istiod-ca-cert
      test: false
      triggers:
      - type: ConfigChange
      - imageChangeParams:
          automatic: true
          containerNames:
          - helloworld
          from:
            kind: ImageStreamTag
            name: hello-go-gke:1.0
        type: ImageChange
    status:
      availableReplicas: 0
      latestVersion: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top