- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 138 for generados (0.05 sec)
-
docs/es/docs/advanced/generate-clients.md
## Generadores de Clientes y SDKs - Sponsor También hay algunos generadores de Clientes y SDKs **respaldados por empresas** basados en OpenAPI (FastAPI), en algunos casos pueden ofrecerte **funcionalidades adicionales** además de SDKs/clientes generados de alta calidad.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jun 17 11:53:56 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/en/docs/advanced/generate-clients.md
In this guide, you'll learn how to generate a **TypeScript SDK** for your FastAPI backend. ## Open Source SDK Generators { #open-source-sdk-generators } A versatile option is the <a href="https://openapi-generator.tech/" class="external-link" target="_blank">OpenAPI Generator</a>, which supports **many programming languages** and can generate SDKs from your OpenAPI specification.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java
*/ package org.codelibs.fess.thumbnail.impl; import java.io.File; /** * Empty implementation of thumbnail generator that does not generate any thumbnails. * This class is used as a no-op thumbnail generator when thumbnail generation is disabled * or when no specific thumbnail generator is configured. */ public class EmptyGenerator extends BaseThumbnailGenerator { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
* Provides methods for creating thumbnails from various document types. */ public interface ThumbnailGenerator { /** * Gets the name of this thumbnail generator. * @return The generator name. */ String getName(); /** * Generates a thumbnail for the given thumbnail ID and saves it to the output file. * * @param thumbnailId the unique identifier for the thumbnail
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
return null; } /** * Adds a thumbnail generator to the manager. * * @param generator the thumbnail generator to add */ public void add(final ThumbnailGenerator generator) { if (generator.isAvailable()) { if (logger.isDebugEnabled()) { logger.debug("{} is available.", generator.getName()); } generatorList.add(generator);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
/** * Sets the list of generator names. * @param generatorList The list of generator names. */ public void setGeneratorList(final List<String> generatorList) { this.generatorList = generatorList; } @Override public String getName() { return name; } /** * Sets the name of this thumbnail generator. * @param name The generator name.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
docs/en/data/topic_repos.yml
owner_login: piccolo-orm owner_html_url: https://github.com/piccolo-orm - name: openapi-python-client html_url: https://github.com/openapi-generators/openapi-python-client stars: 1667 owner_login: openapi-generators owner_html_url: https://github.com/openapi-generators - name: langchain-serve html_url: https://github.com/jina-ai/langchain-serve stars: 1632 owner_login: jina-ai
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:57:41 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
import org.codelibs.fess.util.DocumentUtil; /** * HTML tag-based thumbnail generator that creates thumbnails from image content * referenced in HTML documents. This generator extracts images from HTML content * and processes them to create thumbnail images based on configured dimensions * and format settings. * * <p>The generator validates image MIME types, processes image data through
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
generator.setCommandTimeout(100L); // Very short timeout generator.setCommandDestroyTimeout(50L); // Test that timeout values are set (we can't verify execution without components) assertTrue("Timeout values should be configurable", true); // Test edge cases generator.setCommandTimeout(0L); generator.setCommandTimeout(-1L);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/en/docs/advanced/custom-response.md
Takes an async generator or a normal generator/iterator and streams the response body. {* ../../docs_src/custom_response/tutorial007.py hl[2,14] *} #### Using `StreamingResponse` with file-like objects { #using-streamingresponse-with-file-like-objects } If you have a file-like object (e.g. the object returned by `open()`), you can create a generator function to iterate over that file-like object.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0)