- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 51 for transformation (0.15 seconds)
-
android/guava-tests/test/com/google/common/math/StatsTesting.java
assertThat(transformation.inverse().inverse()).isSameInstanceAs(transformation); } /** * Asserts that {@code transformation} behaves as expected for {@link * LinearTransformation#forNaN}. */ static void assertLinearTransformationNaN(LinearTransformation transformation) { assertThat(transformation.isHorizontal()).isFalse();
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 23.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
} /** * Returns the transformation. * * @return the transformation */ public String getTransformation() { return transformation; } /** * Sets the transformation. * * @param transformation * the transformation */ public void setTransformation(final String transformation) {Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 15.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
+ System.lineSeparator() + " 3. Remove the mixins from your POM"); } // Check if consumer POM flattening is disabled if (!flattenEnabled) { // When flattening is disabled, treat non-POM projects like parent POMs // Apply only basic transformations without flattening dependency management
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 27 07:40:26 GMT 2025 - 21.2K bytes - Click Count (0) -
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<>();
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Sep 06 04:15:37 GMT 2025 - 28K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
/** * Implementation of IndexUpdateCallback for handling document indexing operations. * This class manages the process of updating the search index with documents from * data stores, including bulk operations, document transformation, and error handling. */ public class IndexUpdateCallbackImpl implements IndexUpdateCallback { private static final Logger logger = LogManager.getLogger(IndexUpdateCallbackImpl.class); /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (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 {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 35.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
* using DefaultRepositoryLayout requires us to enforce usage of the artifact's base version. This * transformation however contradicts the other use case of precisely obeying the repository's layout. The below * flag tries to detect which use case applies to make both plugins happy. */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.internal.transformation.impl; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Collection; import java.util.List;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 06 18:32:25 GMT 2025 - 13.3K bytes - Click Count (0) -
LICENSES/vendor/github.com/containerd/containerd/api/LICENSE
including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Sun Sep 22 18:50:45 GMT 2024 - 10.7K bytes - Click Count (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
ensurePositive(xSumOfSquaresOfDeltas * ySumOfSquaresOfDeltas); return ensureInUnitRange(sumOfProductsOfDeltas / Math.sqrt(productOfSumsOfSquaresOfDeltas)); } /** * Returns a linear transformation giving the best fit to the data according to <a * href="http://mathworld.wolfram.com/LeastSquaresFitting.html">Ordinary Least Squares linear
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 08 18:35:13 GMT 2025 - 10.4K bytes - Click Count (0)