- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 138 for componente (0.09 sec)
-
docs/es/docs/index.md
--- "_Si alguien está buscando construir una API de Python para producción, altamente recomendaría **FastAPI**. Está **hermosamente diseñado**, es **simple de usar** y **altamente escalable**, se ha convertido en un **componente clave** en nuestra estrategia de desarrollo API primero y está impulsando muchas automatizaciones y servicios como nuestro Ingeniero Virtual TAC._"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.5K bytes - Viewed (0) -
docs/pt/docs/index.md
--- "_Se alguém estiver procurando construir uma API Python para produção, eu recomendaria fortemente o **FastAPI**. Ele é **lindamente projetado**, **simples de usar** e **altamente escalável**. Ele se tornou um **componente chave** para a nossa estratégia API first de desenvolvimento e está impulsionando diversas automações e serviços, como o nosso Virtual TAC Engineer._"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} } /** * Checks if a component is available. * @param componentKey The key of the component to check. * @return True if the component is available, false otherwise. */ public static boolean hasComponent(final String componentKey) { if (SingletonLaContainerFactory.getContainer().hasComponentDef(componentKey)) { return true; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/resources/fess_job.xml
</component> <component name="aggregateLogJob" class="org.codelibs.fess.job.AggregateLogJob" instance="prototype"> </component> <component name="purgeDocJob" class="org.codelibs.fess.job.PurgeDocJob" instance="prototype"> </component> <component name="purgeLogJob" class="org.codelibs.fess.job.PurgeLogJob" instance="prototype"> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 22:21:45 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
/** * Validate individual path components */ private void validateComponents(String path) throws SmbException { String[] components = path.split("[\\\\/]"); for (String component : components) { if (component.isEmpty()) { continue; // Skip empty components (from double slashes) } // Check component length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/resources/test_app.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml" /> <include path="lastaflute.xml" /> <!-- Register systemProperties for test environment --> <component name="systemProperties" class="org.codelibs.fess.unit.TestSystemProperties" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 390 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
public void customize(org.lastaflute.di.core.ComponentDef componentDef) { // First mock implementation } }; // Create second customizer ComponentCustomizer customizer2 = new ComponentCustomizer() { @Override public void customize(org.lastaflute.di.core.ComponentDef componentDef) { // Second mock implementation }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
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() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
} // Check individual components String[] components = path.split("[/\\\\]"); for (String component : components) { if (component.length() > MAX_PATH_COMPONENT_SIZE) { failedValidations.incrementAndGet(); log.warn("Path component exceeds maximum length: {}", component.length()); throw new SmbException("Path component too long");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* * @return The uncanonicalized full URL of this SMB resource. */ String getPath(); /** * Returns the full URL of this SMB resource with '.' and '..' components * factored out. An <code>SmbFile</code> constructed with the result of * this method will result in an <code>SmbFile</code> that is equal to * the original. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0)