Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 541 - 550 of 943 for warning1 (0.04 seconds)

  1. src/main/webapp/js/chat.js

            elements.charCount.text(count);
    
            var counter = elements.charCount.parent();
            counter.removeClass('warning danger');
            if (count >= maxLength * 0.95) {
                counter.addClass('danger');
            } else if (count >= maxLength * 0.8) {
                counter.addClass('warning');
            }
        }
    
        /**
         * Copy text to clipboard
         */
        function copyToClipboard(text, button) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                                .setException(e));
                    } else {
                        problems.add(new ModelProblemCollectorRequest(Severity.WARNING, Version.V20)
                                .setMessage("Malformed POM " + modelSource.getLocation() + ": " + e.getMessage())
                                .setException(e));
                    }
                }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  3. .teamcity/mvnw

      fi
    fi
    
    if [ ! -x "$JAVACMD" ] ; then
      echo "Error: JAVA_HOME is not defined correctly." >&2
      echo "  We cannot execute $JAVACMD" >&2
      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
    
    # traverses directory structure from process work directory to filesystem root
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/ContiguousSet.java

     * <p>Note that because bounded ranges over {@code int} and {@code long} values are so common, this
     * particular example can be written as just:
     *
     * {@snippet :
     * ContiguousSet.closed(5, 42)
     * }
     *
     * <p><b>Warning:</b> Be extremely careful what you do with conceptually large instances (such as
     * {@code ContiguousSet.create(Range.greaterThan(0), DiscreteDomain.integers()}). Certain operations
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  5. docs/en/mkdocs.yml

      pymdownx.tilde: null
      pymdownx.blocks.admonition:
        types:
        - note
        - attention
        - caution
        - danger
        - error
        - tip
        - hint
        - warning
        - info
        - check
      pymdownx.blocks.details: null
      pymdownx.blocks.tab:
        alternate_style: true
      mdx_include: null
      markdown_include_variants: null
    extra:
      social:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  6. docs/ru/docs/advanced/events.md

    {* ../../docs_src/events/tutorial003_py310.py hl[22] *}
    
    ## Альтернативные события (устаревшие) { #alternative-events-deprecated }
    
    /// warning | Предупреждение
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. docs/uk/docs/advanced/advanced-dependencies.md

    ///
    
    ## Залежності з `yield`, `HTTPException`, `except` та фоновими задачами { #dependencies-with-yield-httpexception-except-and-background-tasks }
    
    /// warning | Попередження
    
    Найімовірніше, вам не знадобляться ці технічні деталі.
    
    Вони корисні головно, якщо у вас був застосунок FastAPI старіший за 0.121.0 і ви стикаєтеся з проблемами залежностей із `yield`.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/advanced/additional-responses.md

    # OpenAPI 中的額外回應 { #additional-responses-in-openapi }
    
    /// warning | 警告
    
    這是一個偏進階的主題。
    
    如果你剛開始使用 **FastAPI**,大多情況下不需要用到它。
    
    ///
    
    你可以宣告額外的回應,包含額外的狀態碼、媒體型別、描述等。
    
    這些額外回應會被包含在 OpenAPI 中,因此也會顯示在 API 文件裡。
    
    但對於這些額外回應,你必須直接回傳像 `JSONResponse` 這樣的 `Response`,並包含你的狀態碼與內容。
    
    ## 使用 `model` 的額外回應 { #additional-response-with-model }
    
    你可以在你的「路徑操作裝飾器」中傳入參數 `responses`。
    
    它接收一個 `dict`:鍵是各回應的狀態碼(例如 `200`),值是另一個 `dict`,其中包含每個回應的資訊。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/extra-models.md

    UserInDB(
        username = user_dict["username"],
        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
        hashed_password = hashed_password,
    )
    ```
    
    /// warning | 警告
    
    配套的辅助函数 `fake_password_hasher` 和 `fake_save_user` 仅用于演示可能的数据流,当然并不提供真实的安全性。
    
    ///
    
    ## 减少重复 { #reduce-duplication }
    
    减少代码重复是 **FastAPI** 的核心思想之一。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. docs/lambda/README.md

    Lets start the lambda handler.
    
    ```
    python lambda_handler.py
     * Serving Flask app 'webhook'
     * Debug mode: off
    WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
     * Running on http://127.0.0.1:5000
    Press CTRL+C to quit
    ```
    
    ## Start MinIO with Lambda target
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 7.7K bytes
    - Click Count (0)
Back to Top