Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 371 for explode (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     *
     * <p>This particular order of operations may be unrealistic, and testing all 3^5 of them may be
     * thought of as overkill; however, it's difficult to determine which proper subset of this massive
     * set would be sufficient to expose any possible bug. Brute force is simpler.
     *
     * <p>To use this class the concrete subclass must implement the {@link
     * IteratorTester#newTargetIterator()} method. This is because it's impossible to test an Iterator
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/c_api_unified_experimental_internal.h

    // `c_api_unified_experimental.h` header.
    // =============================================================================
    
    // Represents either a MlirTensor or a GraphTensor.
    // This base class does not expose any public methods other than to distinguish
    // which subclass it actually is. The user is responsible to use the right
    // type of AbstractTensor in their context (do not pass an MlirTensor to a
    // GraphContext and vice-versa).
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 5.2K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaBasePlugin.java

         * Sadly this mechanism does not translate into maven pom generation. In order
         * to effectively make the pom act as if it has no transitive dependencies,
         * we must exclude each transitive dependency of each direct dependency.
         * <p>
         * Determining the transitive deps of a dependency which has been resolved as
         * non-transitive is difficult because the process of resolving removes the
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 8K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/http/NtlmServlet.java

     * {@code NtlmHttpFilter} should be used</b>. For custom NTLM HTTP Authentication schemes the {@code NtlmSsp} may be used.
     *
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> related information.
     */
    
    public abstract class NtlmServlet extends HttpServlet {
    
        /**
         * Default constructor.
         */
        protected NtlmServlet() {
            super();
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  5. docs/de/docs/tutorial/index.md

    ///
    
    /// tip | Tipp
    
    FastAPI hat eine [offizielle Erweiterung für VS Code](https://marketplace.visualstudio.com/items?itemName=FastAPILabs.fastapi-vscode) (und Cursor), die viele Funktionen bereitstellt, darunter einen Pfadoperation-Explorer, eine Pfadoperation-Suche, CodeLens-Navigation in Tests (zur Definition aus Tests springen) sowie FastAPI-Cloud-Deployment und Logs – alles direkt aus Ihrem Editor.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/body-updates.md

    /// note | 注意
    
    `PATCH` 相較於 `PUT` 較少被使用、也較不為人知。
    
    許多團隊甚至在部分更新時也只用 `PUT`。
    
    你可以依需求自由選用,**FastAPI** 不會強制規範。
    
    但本指南會大致示範它們各自的設計用法。
    
    ///
    
    ### 使用 Pydantic 的 `exclude_unset` 參數 { #using-pydantics-exclude-unset-parameter }
    
    如果要接收部分更新,在 Pydantic 模型的 `.model_dump()` 中使用 `exclude_unset` 參數非常實用。
    
    例如 `item.model_dump(exclude_unset=True)`。
    
    這會產生一個只包含建立 `item` 模型時實際設定過之欄位的 `dict`,不含預設值。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        @ValidateTypeFailure
        public Integer num;
    
        /**
         * Array of language codes to filter search results.
         */
        public String[] lang;
    
        /**
         * Array of additional query strings to exclude from search.
         */
        public String[] ex_q;
    
        /**
         * The starting position for search results pagination.
         */
        @ValidateTypeFailure
        public Integer start;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  8. docs/ru/docs/tutorial/body-updates.md

    Но в данном руководстве более или менее понятно, как они должны использоваться.
    
    ///
    
    ### Использование параметра `exclude_unset` в Pydantic { #using-pydantics-exclude-unset-parameter }
    
    Если вы хотите получать частичные обновления, очень полезно использовать параметр `exclude_unset` в `.model_dump()` модели Pydantic.
    
    Например, `item.model_dump(exclude_unset=True)`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/body-updates.md

    Але цей посібник показує вам, більш-менш, як їх задумано використовувати.
    
    ///
    
    ### Використання параметра `exclude_unset` у Pydantic { #using-pydantics-exclude-unset-parameter }
    
    Якщо Ви хочете отримувати часткові оновлення, дуже корисно використовувати параметр `exclude_unset` у `.model_dump()` моделі Pydantic.
    
    Наприклад: `item.model_dump(exclude_unset=True)`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/TestWithSslPlugin.java

                    }
                });
            });
    
            project.getTasks()
                .withType(ForbiddenPatternsTask.class)
                .configureEach(forbiddenPatternTask -> forbiddenPatternTask.exclude("**/*.crt", "**/*.key"));
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
Back to Top