Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 781 - 790 of 2,393 for sata (0.02 seconds)

  1. docs/uk/docs/how-to/general.md

    # Загальне - Як зробити - Рецепти { #general-how-to-recipes }
    
    Нижче наведено кілька вказівок до інших розділів документації для загальних або частих питань.
    
    ## Фільтрування даних - Безпека { #filter-data-security }
    
    Щоб гарантувати, що ви не повертаєте більше даних, ніж слід, прочитайте документацію [Навчальний посібник - Модель відповіді - Тип повернення](../tutorial/response-model.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  2. fastapi/.agents/skills/fastapi/references/dependencies.md

    * The logic can be shared by multiple endpoints to do things like error early, authentication, etc.
    * They need to handle cleanup (e.g., DB sessions, file handles), using dependencies with `yield`
    * Their logic needs input data from the request, like headers, query parameters, etc.
    
    ## Dependencies with `yield` and `scope`
    
    When using dependencies with `yield`, they can have a `scope` that defines when the exit code is run.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/io/ByteSource.java

       * eagerly fetches data for each source when iterated (rather than producing sources that only
       * load data through their streams). Prefer using the {@link #concat(Iterable)} overload if
       * possible.
       *
       * @param sources the sources to concatenate
       * @return a {@code ByteSource} containing the concatenated data
       * @throws NullPointerException if any of {@code sources} is {@code null}
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 08 18:35:13 GMT 2025
    - 25.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.java

         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse index() {
            searchEngineApiManager.saveToken();
            return asHtml(path_AdminDashboard_AdminDashboardJsp).renderWith(data -> {
                RenderDataUtil.register(data, "serverPath", searchEngineApiManager.getServerPath());
            });
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/model/PerformanceTestSpec.kt

        fun asConfigurationId(model: CIBuildModel): String
    
        fun asName(): String
    
        fun channel(): String
    }
    
    data class PerformanceTestPartialTrigger(
        val triggerName: String,
        val triggerId: String,
        val dependencies: List<PerformanceTestCoverage>,
    )
    
    data class PerformanceTestCoverage(
        private val uuid: Int,
        override val type: PerformanceTestType,
        override val os: Os,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  6. docs_src/security/tutorial004_an_py310.py

            return False
        if not verify_password(password, user.hashed_password):
            return False
        return user
    
    
    def create_access_token(data: dict, expires_delta: timedelta | None = None):
        to_encode = data.copy()
        if expires_delta:
            expire = datetime.now(timezone.utc) + expires_delta
        else:
            expire = datetime.now(timezone.utc) + timedelta(minutes=15)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 18:10:35 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

     * entire "chunk" (of implementation-dependent length) is ready to be hashed.
     *
     * @author Kevin Bourrillion
     * @author Dimitris Andreou
     */
    // TODO(kevinb): this class still needs some design-and-document-for-inheritance love
    abstract class AbstractStreamingHasher extends AbstractHasher {
      /** Buffer via which we pass data to the hash algorithm (the implementor) */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 03:10:51 GMT 2024
    - 7.1K bytes
    - Click Count (0)
  8. docs/ja/docs/tutorial/request-files.md

    ///
    
    ## 「Form Data」とは { #what-is-form-data }
    
    HTML フォーム(`<form></form>`)がサーバーにデータを送る方法は、そのデータに対して通常「特別な」エンコーディングを用い、JSON とは異なります。
    
    **FastAPI** は JSON ではなく、適切な場所からそのデータを読み取るようにします。
    
    /// note | 技術詳細
    
    ファイルを含まない場合、フォームからのデータは通常「メディアタイプ」`application/x-www-form-urlencoded` でエンコードされます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  9. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            when(response.getHeaderStart()).thenReturn(0);
    
            // Write FileInternalInfo data at the large offset
            SMBUtil.writeInt8(0x123456789ABCDEFL, buffer, 1000);
    
            int result = response.readBytesWireFormat(buffer, bufferIndex);
    
            // Should return at least to the end of the data
            assertTrue(result >= 900); // 1000 + 8 - 100
            assertNotNull(response.getInfo());
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.5K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/AbstractIterator.java

     * interface easier to implement for certain types of data sources.
     *
     * <p>{@code Iterator} requires its implementations to support querying the end-of-data status
     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
     * such as {@link java.io.Reader#read()}, do not expose this information; the only way to discover
     * whether there is any data left is by trying to retrieve it. These types of data sources are
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 6.3K bytes
    - Click Count (0)
Back to Top