- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for transformations (0.06 sec)
-
RELEASE.md
* `tf.data`: * Fixed a bug where setting `options.deterministic = False` would only modify one transformation to run non-deterministically, leaving other transformations deterministic. The option will now apply the same across all transformations. * The optimization `parallel_batch` now becomes default if not disabled by users, which will parallelize copying of batch elements.Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (2) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
getDataCallCount.set(0); lastResponseData = null; lastAccessResultData = null; } } /** * Transformer implementation that performs content transformation */ public static class ContentTransformer implements Transformer { private final String name; private final Map<String, String> transformationRules = new HashMap<>();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
int keyLength = getKeyLength(); String transformation; // Select appropriate AES algorithm based on key length if (keyLength == 32) { // AES-256 support transformation = "AES/GCM/NoPadding"; } else if (keyLength == 16) { // AES-128 (existing) transformation = "AES/GCM/NoPadding"; } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
README.md
- **SmbClient**: SMB/CIFS network shares - **StorageClient**: Cloud storage integration #### Content Processing Pipeline - **Extractors**: Content extraction from various formats - **Transformers**: Data transformation and enrichment - **Filters**: URL filtering with regex patterns - **Rules**: Content processing rules and validation ## Building and Testing ### Build Commands ```bash # Build all modules
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (0) -
README.md
- **Popular Words Analytics**: Track and analyze frequently searched terms - **Flexible Text Processing**: Configurable converters and normalizers for text transformation - **OpenSearch Integration**: Seamless integration with OpenSearch/Elasticsearch clusters - **Asynchronous Operations**: Non-blocking suggestion requests with callback support
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
logger.debug("Failed to check {} index status.", indexName, e); } return exists; } /** * Copies documents from one index to another with optional transformation. * * @param fromIndex the source index name * @param toIndex the destination index name * @param waitForCompletion whether to wait for the operation to complete
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0)