Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 506 for interaction (0.08 seconds)

  1. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

          return AbstractScheduledService.this.toString();
        }
      }
    
      /** Constructor for use by subclasses. */
      protected AbstractScheduledService() {}
    
      /**
       * Run one iteration of the scheduled task. If any invocation of this method throws an exception,
       * the service will transition to the {@link Service.State#FAILED} state and this method will no
       * longer be called.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 27.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    import io.restassured.response.Response;
    
    /**
     * Integration Tests which need an execution of crawler
     * - /api/v1/documents
     * */
    @Tag("it")
    public class SearchApiTests extends CrawlTestBase {
        private static final Logger logger = LogManager.getLogger(SearchApiTests.class);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 19K bytes
    - Click Count (0)
  3. docs/es/docs/python-types.md

        * Generando **errores automáticos** devueltos al cliente cuando los datos son inválidos.
    * **Documentar** la API usando OpenAPI:
        * Que luego es usada por las interfaces de documentación interactiva automática.
    
    Todo esto puede sonar abstracto. No te preocupes. Verás todo esto en acción en el [Tutorial - Guía del Usuario](tutorial/index.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 11.6K bytes
    - Click Count (1)
  4. docs/ru/docs/tutorial/first-steps.md

    Откройте браузер по адресу: [http://127.0.0.1:8000](http://127.0.0.1:8000).
    
    Вы увидите JSON-ответ вида:
    
    ```JSON
    {"message": "Hello World"}
    ```
    
    ### Интерактивная документация API { #interactive-api-docs }
    
    Теперь перейдите по адресу: [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    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)
  5. docs/fr/docs/tutorial/security/simple-oauth2.md

    C'est l'avantage des standards ...
    
    ///
    
    ## Voir en action { #see-it-in-action }
    
    Ouvrez la documentation interactive : [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    ### S'authentifier { #authenticate }
    
    Cliquez sur le bouton « Authorize ».
    
    Utilisez les identifiants :
    
    Utilisateur : `johndoe`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  6. fastapi/.agents/skills/fastapi/SKILL.md

    * Asyncer for handling async and await, concurrency, mixing async and blocking code, prefer it over AnyIO or asyncio.
    * SQLModel for working with SQL databases, prefer it over SQLAlchemy.
    * HTTPX for interacting with HTTP (other APIs), prefer it over Requests.
    
    ## Do not use Pydantic RootModels
    
    Do not use Pydantic `RootModel`, instead use regular type annotations with `Annotated` and Pydantic validation utilities.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  7. docs/de/docs/async.md

    Aber dann, auch wenn Sie Ihre Burger noch nicht haben, ist Ihre Interaktion mit dem Kassierer erst mal „auf Pause“ ⏸, weil Sie warten müssen 🕙, bis Ihre Burger fertig sind.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 27.3K bytes
    - Click Count (0)
  8. src/test/java/jcifs/dcerpc/DcerpcBindTest.java

                resultField.set(bindWithParams, 0);
                assertNull(bindWithParams.getResult(), "Should return null when result is 0");
            }
        }
    
        @Nested
        @DisplayName("Integration Tests")
        class IntegrationTests {
    
            @Test
            @DisplayName("Bind message constructor should set correct values")
            void testBindMessageConstructor() throws Exception {
                // Given
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 22.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            assertTrue(content.contains("<meta name=\"fess:role\" content=\"admin\">"));
            assertTrue(content.contains("<meta name=\"fess:role\" content=\"user\">"));
        }
    
        // --- Integration-style tests ---
    
        @Test
        public void test_execute_fullFlow() throws IOException {
            final List<Map<String, Object>> docs = new ArrayList<>();
            final Map<String, Object> doc1 = new LinkedHashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ## Execution of dependencies with `yield` { #execution-of-dependencies-with-yield }
    
    The sequence of execution is more or less like this diagram. Time flows from top to bottom. And each column is one of the parts interacting or executing code.
    
    ```mermaid
    sequenceDiagram
    
    participant client as Client
    participant handler as Exception handler
    participant dep as Dep with yield
    participant operation as Path Operation
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top