Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 686 for Components (0.07 seconds)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            // Skip this test as it requires container components
            // The process method needs actual ThumbnailQueueBhv and other components
            assertTrue(true);
        }
    
        // Test process with unavailable generator
        @Test
        public void test_process_unavailableGenerator() {
            // Skip this test as it requires container components
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  2. tests/test_openapi_model_description_trim_on_formfeed.py

    client = TestClient(app)
    
    
    def test_openapi():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        openapi_schema = response.json()
    
        assert openapi_schema["components"]["schemas"]["MyModel"]["description"] == (
            "A model with a form feed character in the title.\n"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jun 17 07:46:27 GMT 2025
    - 660 bytes
    - Click Count (0)
  3. tests/test_security_http_base_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"HTTPBase": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {"HTTPBase": {"type": "http", "scheme": "Other"}}
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<components>\n"
                            + "  <component class=\"org.codelibs.fess.ds.impl.CsvDataStore\"/>\n"
                            + "  <component class=\"org.codelibs.fess.ds.impl.DatabaseDataStore\"/>\n"
                            + "  <component class=\"org.codelibs.fess.ds.impl.FileListDataStore\"/>\n" + "</components>");
    
            DataStoreFactory testFactory = new DataStoreFactory() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/job/IndexExportJob.java

                }
    
                final String[] components = (host + "/" + path).split("/");
                final StringBuilder sanitized = new StringBuilder();
                for (int i = 0; i < components.length; i++) {
                    String component = components[i].replaceAll("[<>:\"|?*\\\\]", "_");
                    if (".".equals(component) || "..".equals(component)) {
                        continue;
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  6. tests/test_security_api_key_query_description.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"APIKeyQuery": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyQuery": {
                            "type": "apiKey",
                            "name": "key",
                            "in": "query",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  7. tests/test_security_http_digest.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"HTTPDigest": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {"HTTPDigest": {"type": "http", "scheme": "digest"}}
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemCollector.java

     * the fact that the problem reporter has/should not have information about the calling context and hence cannot provide
     * an expressive source hint for the model problem. Instead, the source hint is configured by the model builder before
     * it delegates to other components that potentially encounter problems. Then, the problem reporter can focus on
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/dependencies/index.md

    # Dependencies { #dependencies }
    
    **FastAPI** has a very powerful but intuitive **<dfn title="also known as components, resources, providers, services, injectables">Dependency Injection</dfn>** system.
    
    It is designed to be very simple to use, and to make it very easy for any developer to integrate other components with **FastAPI**.
    
    ## What is "Dependency Injection" { #what-is-dependency-injection }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  10. tests/test_security_api_key_query.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"APIKeyQuery": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyQuery": {"type": "apiKey", "name": "key", "in": "query"}
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2K bytes
    - Click Count (0)
Back to Top