- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 195 for transforms (0.06 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
/** * Character mapping file handler for managing character mapping dictionaries. * This class provides functionality to load, parse, and manage character mapping * rules that define how input characters should be transformed to output characters * during text analysis and search processing. * * Character mapping files contain mapping rules in the format: * input1,input2,... => output */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
RELEASE.md
* Add `tf.contrib.bayesflow.metropolis_hastings`. * Add `log_rate` parameter to `tf.contrib.distributions.Poisson`. * Extend `tf.contrib.distributions.bijector` API to handle some non-injective transforms. * Java: * Generics (e.g., `Tensor<Integer>`) for improved type-safety (courtesy @andrewcmyers). * Support for multi-dimensional string tensors.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
* Unsatisfiable Request` response will be returned. */ fun onlyIfCached() = commonOnlyIfCached() /** Don't accept a transformed response. */ fun noTransform() = commonNoTransform() fun immutable() = commonImmutable() /** * Sets the maximum age of a cached response. If the cache response's age exceeds [maxAge], it
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0) -
cmd/bucket-stats.go
if !ok { return qs } for arn := range brs.Stats { qs.TgtXferStats[arn] = make(map[RMetricName]XferStats) } count := 0 var totPeak float64 // calculate large, small transfers and total transfer rates per replication target at bucket level for arn, v := range brs.Stats { lcurrTgt := v.XferRateLrg.curr() scurrTgt := v.XferRateSml.curr()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 13.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
private Iterable<LoadingCache<Object, Object>> caches() { // lots of different ways to configure a LoadingCache CacheBuilderFactory factory = cacheFactory(); return Iterables.transform( factory.buildAllPermutations(), new Function<CacheBuilder<Object, Object>, LoadingCache<Object, Object>>() { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 15.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt
*/ class Response internal constructor( /** * The request that initiated this HTTP response. This is not necessarily the same request issued * by the application: * * * It may be transformed by the user's interceptors. For example, an application interceptor * may add headers like `User-Agent`. * * It may be the request generated in response to an HTTP redirect or authentication
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 14:39:28 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
assertTrue(encrypted.length > plaintext.length, "Encrypted message should be larger than plaintext"); // Verify transform header is present (first 52 bytes) assertTrue(encrypted.length >= 52, "Encrypted message should include transform header"); // When - Decrypt byte[] decrypted = context.decryptMessage(encrypted); // Then - Verify decryption
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
docs/en/docs/advanced/custom-response.md
3. This `yield from` tells the function to iterate over that thing named `file_like`. And then, for each part iterated, yield that part as coming from this generator function (`iterfile`). So, it is a generator function that transfers the "generating" work to something else internally. By doing it this way, we can put it in a `with` block, and that way, ensure that the file-like object is closed after finishing. /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/MediaTypeTest.java
} }); } @J2ktIncompatible @GwtIncompatible // reflection private static FluentIterable<MediaType> getConstants() { return getConstantFields() .transform( new Function<Field, MediaType>() { @Override public MediaType apply(Field input) { try { return (MediaType) input.get(null);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} /** * Encrypt a message using the session's encryption context * * @param message the message to encrypt * @return encrypted message with transform header * @throws CIFSException if encryption fails or is not enabled */ public byte[] encryptMessage(byte[] message) throws CIFSException { if (this.encryptionContext == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)