Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for specification (0.22 sec)

  1. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

      @VisibleForTesting long refreshDuration;
      @VisibleForTesting @CheckForNull TimeUnit refreshTimeUnit;
      /** Specification; used for toParseableString(). */
      private final String specification;
    
      private CacheBuilderSpec(String specification) {
        this.specification = specification;
      }
    
      /**
       * Creates a CacheBuilderSpec from a string.
       *
       * @param cacheBuilderSpecification the string form
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  2. src/archive/zip/struct.go

    	extTimeExtraID     = 0x5455 // Extended timestamp
    	infoZipUnixExtraID = 0x5855 // Info-ZIP Unix extension
    )
    
    // FileHeader describes a file within a ZIP file.
    // See the [ZIP specification] for details.
    //
    // [ZIP specification]: https://support.pkware.com/pkzip/appnote
    type FileHeader struct {
    	// Name is the name of the file.
    	//
    	// It must be a relative path, not start with a drive letter (such as "C:"),
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  3. internal/s3select/message.go

    // or multiple records. Depending on the size of the result, a response can contain one or more of these messages.
    //
    // Header specification
    // Records messages contain three headers, as follows:
    // https://docs.aws.amazon.com/AmazonS3/latest/API/images/s3select-frame-diagram-record.png
    //
    // Payload specification
    // Records message payloads can contain a single record, partial records, or multiple records.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 30 15:26:43 GMT 2022
    - 15.2K bytes
    - Viewed (0)
  4. fastapi/security/oauth2.py

    
    class OAuth2PasswordRequestForm:
        """
        This is a dependency class to collect the `username` and `password` as form data
        for an OAuth2 password flow.
    
        The OAuth2 specification dictates that for a password flow the data should be
        collected using form data (instead of JSON) and that it should have the specific
        fields `username` and `password`.
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 21.1K bytes
    - Viewed (1)
  5. guava/src/com/google/common/cache/CacheBuilderSpec.java

      @VisibleForTesting long refreshDuration;
      @VisibleForTesting @CheckForNull TimeUnit refreshTimeUnit;
      /** Specification; used for toParseableString(). */
      private final String specification;
    
      private CacheBuilderSpec(String specification) {
        this.specification = specification;
      }
    
      /**
       * Creates a CacheBuilderSpec from a string.
       *
       * @param cacheBuilderSpecification the string form
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/schema-extra-example.md

    * <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object" class="external-link" target="_blank">`Parameter Object` (in the specification)</a> that was used by FastAPI's:
        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Created-By: Apache Jakarta Maven Built-By: obrit Package: org.apache.commons.* Build-Jdk: 1.4.1_01 Extension-Name: commons-codec Specification-Version: Specification-Vendor: Apache Software Foundation Specification-Title: A collection of simple and common encoders and de coders Implementation-Version: 1.1 Implementation-Vendor: Apache Software Foundation Implementation-Vendor-Id: org/apache/commons/codec/base64/Base64.class package org.apache.commons.codec.base64;...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Aug 09 19:02:31 GMT 2004
    - 18.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1/generated.proto

      // metadata.name must be the Kubernetes node name.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec is the specification of CSINode
      optional CSINodeSpec spec = 2;
    }
    
    // CSINodeDriver holds information about the specification of one CSI driver installed on a node
    message CSINodeDriver {
      // name represents the name of the CSI driver that this object refers to.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    message CSINode {
      // metadata.name must be the Kubernetes node name.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec is the specification of CSINode
      optional CSINodeSpec spec = 2;
    }
    
    // CSINodeDriver holds information about the specification of one CSI driver installed on a node
    message CSINodeDriver {
      // name represents the name of the CSI driver that this object refers to.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/SortedLists.java

       * @param key the value to be searched for.
       * @param comparator the comparator by which the list is ordered.
       * @param presentBehavior the specification for what to do if at least one element of the list
       *     compares as equal to the key.
       * @param absentBehavior the specification for what to do if no elements of the list compare as
       *     equal to the key.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top