Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 325 for flakes (0.44 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

         *
         * @param opnum the operation number for this message
         */
        protected WitnessRpcMessage(int opnum) {
            ptype = 0; // REQUEST
            flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG;
            this.opnum = opnum;
        }
    
        @Override
        public int getOpnum() {
            return opnum;
        }
    
        /**
         * Gets the return code from the RPC operation.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

            super(config);
            this.fileId = fileId;
            this.fileName = fileName;
        }
    
        /**
         * Get the close flags
         *
         * @return the closeFlags
         */
        public final int getCloseFlags() {
            return this.closeFlags;
        }
    
        /**
         * Get the file creation time
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Throwables.java

       * by delaying the per-stack-frame work until each element is accessed. Roughly speaking:
       *
       * <ul>
       *   <li>{@code getStackTrace} takes {@code stackSize} time to return but then negligible time to
       *       retrieve each element of the returned list.
       *   <li>{@code lazyStackTrace} takes negligible time to return but then {@code 1/stackSize} time
       *       to retrieve each element of the returned list (probably slightly more than {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. internal/lru/lru.go

    // because of uint8 usage for nextCleanupBucket, should not exceed 256.
    // casting it as uint8 explicitly requires type conversions in multiple places
    const numBuckets = 100
    
    // NewLRU returns a new thread-safe cache with expirable entries.
    //
    // Size parameter set to 0 makes cache of unlimited size, e.g. turns LRU mechanism off.
    //
    // Providing 0 TTL turns expiring off.
    //
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/additional-responses.md

    ## Response Adicional con `model`
    
    Puedes pasar a tus *decoradores de path operation* un parámetro `responses`.
    
    Recibe un `dict`: las claves son los códigos de estado para cada response (como `200`), y los valores son otros `dict`s con la información para cada uno de ellos.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

         */
        public void setFileInformationClass(final byte fileInformationClass) {
            this.fileInformationClass = fileInformationClass;
        }
    
        /**
         * Sets the query flags for the directory enumeration
         *
         * @param queryFlags
         *            the queryFlags to set
         */
        public void setQueryFlags(final byte queryFlags) {
            this.queryFlags = queryFlags;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

         */
        public void setRemainingBytes(final int remainingBytes) {
            this.remainingBytes = remainingBytes;
        }
    
        /**
         * Sets the write operation flags.
         *
         * @param writeFlags the writeFlags to set
         */
        public void setWriteFlags(final int writeFlags) {
            this.writeFlags = writeFlags;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Longs.java

       * it is returned directly. Otherwise, a new array of size {@code minLength + padding} is
       * returned, containing the values of {@code array}, and zeroes in the remaining places.
       *
       * @param array the source array
       * @param minLength the minimum length the returned array must guarantee
       * @param padding an extra amount to "grow" the array by if growth is necessary
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  9. docs/en/docs/alternatives.md

    It can't handle nested models very well. So, if the JSON body in the request is a JSON object that has inner fields that in turn are nested JSON objects, it cannot be properly documented and validated.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/bigger-applications.md

    **FastAPI** предоставляет удобный инструментарий, который позволяет нам структурировать приложение, сохраняя при этом всю необходимую гибкость.
    
    /// info | Примечание
    
    Если вы раньше использовали Flask, то это аналог шаблонов Flask (Flask's Blueprints).
    
    ///
    
    ## Пример структуры приложения
    
    Давайте предположим, что наше приложение имеет следующую структуру:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    │   ├── dependencies.py
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top