Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 41 for Estep (0.02 seconds)

  1. src/main/webapp/css/chat.css

        transition: all 0.3s ease;
    }
    
    .progress-step .step-icon i {
        font-size: 0.875rem;
        color: #6b778c;
    }
    
    .progress-step.active .step-icon {
        background-color: #0052cc;
        animation: step-pulse 1.5s ease-in-out infinite;
    }
    
    .progress-step.active .step-icon i {
        color: white;
    }
    
    .progress-step.completed .step-icon {
        background-color: #00875a;
    }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * is by declaring that step to be the last step of the pipeline. Nevertheless, we refer to the
     * "value" of a successful step or the "result" (value or exception) of any step.
     *
     * <ol>
     *   <li>A pipeline starts at its leaf step (or steps), which is created from either a callable
     *       block or a {@link ListenableFuture}.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/chat/chat.jsp

    								</div>
    								<div class="progress-step" data-phase="evaluate">
    									<div class="step-icon"><i class="fa fa-check-circle-o" aria-hidden="true"></i></div>
    									<span class="step-label"><la:message key="labels.chat_step_evaluate" /></span>
    								</div>
    								<div class="progress-step" data-phase="fetch">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    								</div>
    								<div class="progress-step" data-phase="evaluate">
    									<div class="step-icon"><i class="fa fa-check-circle-o" aria-hidden="true"></i></div>
    									<span class="step-label"><la:message key="labels.chat_step_evaluate" /></span>
    								</div>
    								<div class="progress-step" data-phase="fetch">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/first-steps.md

    以上です!これで、そのURLでアプリにアクセスできます。 ✨
    
    ## ステップ毎の要約 { #recap-step-by-step }
    
    ### Step 1: `FastAPI`をインポート { #step-1-import-fastapi }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[1] *}
    
    `FastAPI`は、APIのすべての機能を提供するPythonクラスです。
    
    /// note | 技術詳細
    
    `FastAPI`は`Starlette`を直接継承するクラスです。
    
    `FastAPI`でも[Starlette](https://www.starlette.dev/)のすべての機能を利用可能です。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                          return "value 4";
                        }),
                executor);
    
        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 63K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                          return "value 4";
                        }),
                executor);
    
        // Pause in step 2.
        step2Waiter.awaitStarted();
    
        // Everything should still be open.
        assertStillOpen(closeable1, closeable2, closeable3, closeable4);
    
        // Cancel step 3, resume step 2, and pause in step 4.
        assertWithMessage("step3.cancel()").that(step3.cancel(false)).isTrue();
        step2Waiter.awaitReturned();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 63K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/tutorial/first-steps.md

    ✅ Deployment successful!
    
    🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev
    ```
    
    </div>
    
    就這樣!現在你可以透過該 URL 存取你的應用程式了。✨
    
    ## 逐步回顧 { #recap-step-by-step }
    
    ### 第一步:引入 `FastAPI` { #step-1-import-fastapi }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[1] *}
    
    `FastAPI` 是一個 Python 類別,提供所有 API 的全部功能。
    
    /// note | 技術細節
    
    `FastAPI` 是一個直接繼承自 `Starlette` 的類別。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  9. docs/ru/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    Готово! Теперь вы можете открыть своё приложение по этому URL. ✨
    
    ## Рассмотрим поэтапно { #recap-step-by-step }
    
    ### Шаг 1: импортируйте `FastAPI` { #step-1-import-fastapi }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[1] *}
    
    `FastAPI` — это класс на Python, который предоставляет всю функциональность для вашего API.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    Bu kadar! Artık uygulamanıza o URL üzerinden erişebilirsiniz. ✨
    
    ## Adım Adım Özetleyelim { #recap-step-by-step }
    
    ### Adım 1: `FastAPI` import edin { #step-1-import-fastapi }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[1] *}
    
    `FastAPI`, API'nız için tüm işlevselliği sağlayan bir Python class'ıdır.
    
    /// note | Teknik Detaylar
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
Back to Top