Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 1,014 for APPLICATION (0.24 seconds)

  1. docs/ko/docs/advanced/sub-applications.md

    ## **FastAPI** 애플리케이션 마운트 { #mounting-a-fastapi-application }
    
    "마운트"란 완전히 "독립적인" 애플리케이션을 특정 경로에 추가하고, 그 하위 애플리케이션에 선언된 _경로 처리_로 해당 경로 아래의 모든 것을 처리하도록 하는 것을 의미합니다.
    
    ### 최상위 애플리케이션 { #top-level-application }
    
    먼저, 메인 최상위 **FastAPI** 애플리케이션과 그 *경로 처리*를 생성합니다:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
    
    ### 하위 애플리케이션 { #sub-application }
    
    그 다음, 하위 애플리케이션과 그 *경로 처리*를 생성합니다.
    
    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. src/test/java/org/codelibs/fess/it/search/LabelsApiTests.java

            if (testLabelId != null) {
                deleteLabel(testLabelId);
            }
            deleteTestToken();
        }
    
        @Test
        public void testGetLabels_ok() {
            given().contentType("application/json")
                    .when()
                    .get("/api/v1/labels")
                    .then()
                    .statusCode(200)
                    .body("record_count", greaterThanOrEqualTo(0));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

             */
            OptionalThing<FessUserBean> supply();
        }
    
        /**
         * The supplier of application type.
         */
        @FunctionalInterface
        public interface AppTypeSupplier {
            /**
             * Supply the application type.
             * @return The application type.
             */
            String supply();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4K bytes
    - Click Count (0)
  4. tests/test_infer_param_optionality.py

                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  5. tests/test_stream_bare_type.py

        assert response.headers["content-type"] == "application/jsonl"
        lines = [json.loads(line) for line in response.text.strip().splitlines()]
        assert lines == [{"name": "foo"}]
    
    
    def test_stream_bare_sync_iterable():
        response = client.get("/items/stream-bare-sync")
        assert response.status_code == 200
        assert response.headers["content-type"] == "application/jsonl"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 18:56:47 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/curl/CurlRequestTest.java

        @Test
        public void testHeaderMethod() {
            CurlRequest request = new CurlRequest(Method.GET, "https://example.com");
    
            CurlRequest result = request.header("Content-Type", "application/json").header("Accept", "application/json");
    
            assertSame(request, result); // Fluent API
        }
    
        @Test
        public void testThreadPoolMethod() {
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 09:11:12 GMT 2026
    - 24.7K bytes
    - Click Count (0)
  7. tests/test_forms_single_param.py

                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  8. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

      public void testAddDelayedShutdownHook_success() throws InterruptedException {
        TestApplication application = new TestApplication();
        ExecutorService service = mock(ExecutorService.class);
        application.addDelayedShutdownHook(service, 2, SECONDS);
        verify(service, never()).shutdown();
        application.shutdown();
        InOrder shutdownFirst = inOrder(service);
        shutdownFirst.verify(service).shutdown();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java

        }
    
        @Test
        public void testScrollSearch_ok() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "*");
    
            Response response = given().contentType("application/x-ndjson").params(params).when().get("/api/v1/documents/all");
    
            assertEquals(200, response.getStatusCode());
            String body = response.getBody().asString();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  10. tests/test_additional_properties.py

                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
Back to Top