Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 232 for normalization (0.33 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/InputNormalizer.java

    import org.gradle.internal.fingerprint.FileNormalizer;
    
    import java.util.Locale;
    
    // TODO Break this up between simple normalizers and Java classpath normalizers
    //      The latter should be moved to :normalization-java
    public enum InputNormalizer implements FileNormalizer {
        ABSOLUTE_PATH(false),
        RELATIVE_PATH(false),
        NAME_ONLY(false),
        IGNORE_PATH(true),
        RUNTIME_CLASSPATH(true),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/util_test.go

    		prefix string
    	}{
    		// Mismatch
    		{"a", "b"},
    
    		// Dir requirement
    		{"a", "a/"},
    
    		// Prefix mismatch
    		{"ns2", "ns"},
    		{"ns2", "ns/"},
    		{"中文文", "中文"},
    
    		// Ensure no normalization is applied
    		{"a/c/../b/", "a/b/"},
    		{"a/", "a/b/.."},
    	}
    	for i, tc := range invalidTestcases {
    		if hasPathPrefix(tc.s, tc.prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 28 02:01:09 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultPropertyTypeResolver.java

            if (typeAnnotation != null) {
                return typeAnnotation.annotationType();
            } else {
                Annotation normalizationAnnotation = propertyAnnotations.get(ModifierAnnotationCategory.NORMALIZATION);
                if (normalizationAnnotation != null) {
                    Class<? extends Annotation> normalizationType = normalizationAnnotation.annotationType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:23 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.java

    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    import java.util.Map;
    
    /**
     * Fingerprint files without path or content normalization.
     */
    public class AbsolutePathFingerprintingStrategy extends AbstractDirectorySensitiveFingerprintingStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.normalization.java.impl;
    
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.util.LinkedList;
    import java.util.List;
    
    public class SortingAnnotationVisitor extends AnnotationVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[missing_normalization_annotation]]
    == Missing normalization annotation
    
    This error occurs whenever a task or artifact transform is cacheable and that a file or file collection input property isn't declaring how it should be normalized.
    Normalization tells Gradle if, for example, the absolute path of input files matter or if only the contents is relevant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

            override fun getNormalization(): InputNormalizationHandlerInternal {
                onAccess("normalization")
                return delegate.normalization
            }
    
            override fun normalization(configuration: Action<in InputNormalizationHandler>) {
                onAccess("normalization")
                delegate.normalization(configuration)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:missing-annotation' : 'Missing annotation',
            'validation:property-validation:missing-normalization-annotation' : 'Missing normalization',
            'validation:property-validation:nested-map-unsupported-key-type' : 'Unsupported nested map key',
            'validation:property-validation:nested-type-unsupported' : 'Nested type unsupported',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal
    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * State cached for a project.
     */
    internal
    sealed class CachedProjectState(
        val path: Path,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

    import org.gradle.exemplar.test.normalizer.OutputNormalizer;
    
    import java.util.regex.Pattern;
    
    /**
     * Conditionally removes the configuration cache logging from the Gradle output.
     * This normalization is only enabled if {@link #CLEAN_CONFIGURATION_CACHE_OUTPUT}
     * system property is set to {@code true}.
     * <p>
     * Most of our samples that aren't aiming to test the configuration cache itself, do not care about
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top