Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 831 - 840 of 1,089 for itens (0.02 seconds)

  1. docs/ko/docs/advanced/openapi-webhooks.md

    여러분이 정의한 webhook은 **OpenAPI** 스키마와 자동 **docs UI**에 포함됩니다.
    
    /// info | 정보
    
    `app.webhooks` 객체는 실제로 `APIRouter`일 뿐이며, 여러 파일로 앱을 구조화할 때 사용하는 것과 동일한 타입입니다.
    
    ///
    
    webhook에서는 실제로(`/items/` 같은) *경로(path)*를 선언하지 않는다는 점에 유의하세요. 그곳에 전달하는 텍스트는 webhook의 **식별자**(이벤트 이름)일 뿐입니다. 예를 들어 `@app.webhooks.post("new-subscription")`에서 webhook 이름은 `new-subscription`입니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/openapi-webhooks.md

    你定義的 webhook 會出現在 OpenAPI 結構描述與自動產生的文件 UI 中。
    
    /// info
    
    `app.webhooks` 其實就是一個 `APIRouter`,與你在將應用拆分為多個檔案時所使用的型別相同。
    
    ///
    
    注意,使用 webhook 時你其實不是在宣告路徑(例如 `/items/`),你傳入的文字只是該 webhook 的識別名稱(事件名稱)。例如在 `@app.webhooks.post("new-subscription")` 中,webhook 名稱是 `new-subscription`。
    
    這是因為預期由你的使用者以其他方式(例如 Web 控制台)來設定實際要接收 webhook 請求的 URL 路徑。
    
    ### 查看文件 { #check-the-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/advanced/templates.md

    因此,包含以下內容的區塊:
    
    {% raw %}
    
    ```jinja
    <a href="{{ url_for('read_item', id=id) }}">
    ```
    
    {% endraw %}
    
    ...會產生指向與「*路徑操作函式*」`read_item(id=id)` 相同 URL 的連結。
    
    例如,若 ID 為 `42`,會渲染為:
    
    ```html
    <a href="/items/42">
    ```
    
    ## 模板與靜態檔案 { #templates-and-static-files }
    
    你也可以在模板中使用 `url_for()`,例如搭配你以 `name="static"` 掛載的 `StaticFiles` 使用。
    
    ```jinja hl_lines="4"
    {!../../docs_src/templates/templates/item.html!}
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

     *
     * The class provides methods for retrieving, adding, updating, and
     * deleting synonym items, as well as reloading the dictionary
     * from its source file.
     */
    public class SynonymFile extends DictionaryFile<SynonymItem> {
        private static final String SYNONYM = "synonym";
    
        /** The list of synonym items loaded from the dictionary file. */
        List<SynonymItem> synonymItemList;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/cache/CacheStats.java

       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
       * as a result of a refresh or if the cache loader returned more items than was requested. {@code
       * missCount} may also be incremented not in conjunction with this (nor {@link
       * #loadExceptionCount}) on calls to {@code getIfPresent}.
       */
      public long loadSuccessCount() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  6. guava/src/com/google/common/cache/CacheStats.java

       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
       * as a result of a refresh or if the cache loader returned more items than was requested. {@code
       * missCount} may also be incremented not in conjunction with this (nor {@link
       * #loadExceptionCount}) on calls to {@code getIfPresent}.
       */
      public long loadSuccessCount() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  7. TESTING.asciidoc

    ./gradlew :server:test -Dtests.iters=N --tests org.elasticsearch.package.ClassName.methodName
    -------------------------------------------------------------------------
    
    Repeats N times but skips any tests after the first failure or M initial failures.
    
    -------------------------------------------------------------
    ./gradlew test -Dtests.iters=N -Dtests.failfast=true ...
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/index.md

    ///
    
    /// tip | Dica
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                                       styleClass="form-control">
                                                <c:forEach var="hn" varStatus="s"
                                                           items="${handlerNameItems}">
                                                    <la:option value="${f:u(hn.value)}">${f:h(hn.label)}</la:option>
                                                </c:forEach>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  10. helm-releases/minio-3.6.2.tgz

    . }} - secret: name: {{ template "minio.secretName" . }} {{- range .Values.users }} {{- if .existingSecret }} - secret: name: {{ .existingSecret }} items: - key: {{ .existingSecretKey }} path: secrets/{{ .accessKey }} {{- end }} {{- end }} {{- if .Values.tls.enabled }} - name: cert-secret-volume-mc secret: secretName: {{ .Values.tls.certSecret }} items: - key: {{ .Values.tls.publicCrt }} path: CAs/public.crt {{ end }} containers: - name: minio-mc image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Mar 17 18:30:55 GMT 2022
    - 17.9K bytes
    - Click Count (0)
Back to Top