Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,568 for and (0.04 sec)

  1. docs/en/docs/alternatives.md

    Marshmallow and Webargs provide validation, parsing and serialization as plug-ins.
    
    But documentation is still missing. Then APISpec was created.
    
    It is a plug-in for many frameworks (and there's a plug-in for Starlette too).
    
    The way it works is that you write the definition of the schema using YAML format inside the docstring of each function handling a route.
    
    And it generates OpenAPI schemas.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-20 19:20
    - 23.2K bytes
    - Viewed (0)
  2. LICENSES/vendor/github.com/containerd/containerd/api/LICENSE

                               Version 2.0, January 2004
                            https://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
    Registered: 2024-11-01 09:05
    - Last Modified: 2024-09-22 18:50
    - 10.7K bytes
    - Viewed (0)
  3. LICENSES/third_party/forked/gotestsum/LICENSE

                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
    Registered: 2024-11-01 09:05
    - Last Modified: 2022-04-01 18:49
    - 11.1K bytes
    - Viewed (0)
  4. licenses/github.com/go-logr/stdr/LICENSE

                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
    Registered: 2024-11-06 22:53
    - Last Modified: 2023-07-17 20:25
    - 11.1K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    While you are waiting, you go with your crush and pick a table, you sit and talk with your crush for a long time (as your burgers are very fancy and take some time to prepare).
    
    As you are sitting at the table with your crush, while you wait for the burgers, you can spend that time admiring how awesome, cute and smart your crush is ✨😍✨.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-08-28 23:33
    - 23.5K bytes
    - Viewed (0)
  6. cni/README.md

    The code automatically detects the proxyUID and proxyGID from RunAsUser/RunAsGroup and exclude them from interception, defaulting to 1337
    
    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
        - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery.
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-07-17 23:10
    - 10.5K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/security/oauth2-scopes.md

    /// warning
    
    This is a more or less advanced section. If you are just starting, you can skip it.
    
    You don't necessarily need OAuth2 scopes, and you can handle authentication and authorization however you want.
    
    But OAuth2 with scopes can be nicely integrated into your API (with OpenAPI) and your API docs.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-29 11:02
    - 13.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // of namespaces matches the request's namespace.
    message ResourcePolicyRule {
      // `verbs` is a list of matching verbs and may not be empty.
      // "*" matches all verbs and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string verbs = 1;
    
      // `apiGroups` is a list of matching API groups and may not be empty.
    Registered: 2024-11-06 22:53
    - Last Modified: 2024-03-11 18:43
    - 19.4K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

        val tagAndClass = source.readByte().toInt() and 0xff
        val tagClass = tagAndClass and 0b1100_0000
        val constructed = (tagAndClass and 0b0010_0000) == 0b0010_0000
        val tag =
          when (val tag0 = tagAndClass and 0b0001_1111) {
            0b0001_1111 -> readVariableLengthLong()
            else -> tag0.toLong()
          }
    
        // Read the length.
        val length0 = source.readByte().toInt() and 0xff
        val length =
          when {
    Registered: 2024-11-01 11:42
    - Last Modified: 2024-01-08 01:13
    - 10.5K bytes
    - Viewed (0)
  10. docs/bucket/replication/DESIGN.md

    Replication relies on immutability provided by versioning to sync objects between the configured source and replication target. Replication results in the object data, metadata, last modification time and version ID all being identical between the source and target. Thus version ordering is automatically guaranteed on the source and target clusters.
    
    ### Replication of object version and metadata
    
    Registered: 2024-11-03 19:28
    - Last Modified: 2022-09-29 04:28
    - 14.7K bytes
    - Viewed (0)
Back to top