Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 811 - 820 of 1,035 for allo (0.08 seconds)

  1. docs/de/llm-prompt.md

    Examples:
    
    Source (English):
    
    ```
    "Hello world"
    “Hello Universe”
    "He said: 'Hello'"
    “my name is ‘Nils’”
    `"__main__"`
    `"items"`
    ```
    
    Result (German):
    
    ```
    „Hallo Welt“
    „Hallo Universum“
    „Er sagte: ‚Hallo‘“
    „Mein Name ist ‚Nils‘“
    `"__main__"`
    `"items"`
    ```
    
    ### Ellipsis
    
    - Make sure there is a space between an ellipsis and a word following or preceding the ellipsis.
    
    Examples:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

        }
              </code>
            </codeSegment>
            <codeSegment>
              <version>2.0.0+</version>
              <code>
        /**
         * Indicates if this proxy is active.
         * To allow interpolation of this field, this method lazily parses
         * the {@link #getActiveString()} value as a boolean and defaults to {@code true}
         * if not set.
         *
         * @return a boolean indicating if this proxy is active
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun May 18 09:15:56 GMT 2025
    - 33.8K bytes
    - Click Count (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

       *
       *  - "None": the cookie is always sent. The "Secure" attribute must also be set when setting this
       *    value.
       */
      @get:JvmName("sameSite")
      val sameSite: String?,
    ) {
      /**
       * Returns true if this cookie should be included on a request to [url]. In addition to this
       * check callers should also confirm that this cookie has not expired.
       */
      fun matches(url: HttpUrl): Boolean {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 23.1K bytes
    - Click Count (0)
  4. docs/zh/docs/deployment/https.md

    ///
    
    不过,由于**应用服务器**并不知道自己位于受信任的**代理**之后,默认情况下,它不会信任这些请求头。
    
    但你可以配置**应用服务器**去信任由**代理**发送的这些“转发”请求头。如果你在使用 FastAPI CLI,可以使用命令行选项 `--forwarded-allow-ips` 指定它应该信任哪些 IP 发来的这些“转发”请求头。
    
    例如,如果**应用服务器**只接收来自受信任**代理**的通信,你可以设置 `--forwarded-allow-ips="*"`,让它信任所有传入的 IP,因为它只会接收来自**代理**所使用 IP 的请求。
    
    这样,应用就能知道自己的公共 URL、是否使用 HTTPS、域名等信息。
    
    这在需要正确处理重定向等场景时很有用。
    
    /// tip | 提示
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  5. src/main/resources/fess_label_es.properties

    labels.spnego_preauth_username=Pre-Auth Username
    labels.spnego_preauth_password=Pre-Auth Password
    labels.spnego_allow_basic=Allow Basic Auth
    labels.spnego_allow_unsecure_basic=Allow Unsecure Basic Auth
    labels.spnego_prompt_ntlm=Prompt NTLM
    labels.spnego_allow_localhost=Allow Localhost
    labels.spnego_allow_delegation=Allow Delegation
    labels.spnego_exclude_dirs=Exclude Directories
    labels.general_menu_entraid=Entra ID
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 54.3K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_ko.properties

    labels.spnego_preauth_username=Pre-Auth Username
    labels.spnego_preauth_password=Pre-Auth Password
    labels.spnego_allow_basic=Allow Basic Auth
    labels.spnego_allow_unsecure_basic=Allow Unsecure Basic Auth
    labels.spnego_prompt_ntlm=Prompt NTLM
    labels.spnego_allow_localhost=Allow Localhost
    labels.spnego_allow_delegation=Allow Delegation
    labels.spnego_exclude_dirs=Exclude Directories
    labels.general_menu_entraid=Entra ID
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 51.6K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/hash/Striped64.java

      /** Table of cells. When non-null, size is a power of 2. */
      transient volatile Cell @Nullable [] cells;
    
      /**
       * Base value, used mainly when there is no contention, but also as a fallback during table
       * initialization races. Updated via CAS.
       */
      transient volatile long base;
    
      /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 15 22:17:15 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * during metadata retrieval.
         */
        int VALIDATION_LEVEL_MINIMAL = 0;
    
        /**
         * Denotes validation as performed by Maven 2.0. This validation level is meant as a compatibility mode to allow
         * users to migrate their projects.
         */
        int VALIDATION_LEVEL_MAVEN_2_0 = 20;
    
        /**
         * Denotes validation as performed by Maven 3.0. This validation level is meant for existing projects.
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/collect/Ordering.java

       * parameter that isn't among the provided values.
       *
       * <p>The generated comparator is serializable if all the provided values are serializable.
       *
       * @param leastValue the value which the returned comparator should consider the "least" of all
       *     values
       * @param remainingValuesInOrder the rest of the values that the returned comparator will be able
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 39.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

    /**
     * Pager class for search log pagination and filtering.
     *
     * This class provides pagination functionality for various types of search logs
     * including search logs, click logs, favorite logs, and user information logs.
     * It also supports different aggregation types for analytics and reporting.
     */
    public class SearchLogPager implements Serializable {
    
        /** Serial version UID for serialization. */
        private static final long serialVersionUID = 1L;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (0)
Back to Top