Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for NORMALIZED (0.15 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            // Preserve identity of artifacts
            Set<IvyArtifact> main = linkedHashSetOf(
                normalized(
                    mainArtifacts.stream(),
                    this::isValidArtifact
                )
            );
            LinkedHashSet<IvyArtifact> all = new LinkedHashSet<>(main);
            normalized(
                Streams.concat(metadataArtifacts.stream(), derivedArtifacts.stream()),
                this::isPublishableArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractProjectRelocationIntegrationTest.groovy

            removeResults(relocatedDir)
            inDirectory(relocatedDir)
            run taskName
            then: "it is executed again"
            executedAndNotSkipped taskName
    
            when: "comparing the (normalized) results from the original execution and the relocated one"
            def relocatedResults = extractResultsFrom(relocatedDir)
            then: "the two results should be the same"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		}
    	}
    	return n, err
    }
    
    // quickSpan returns a boundary n such that src[0:n] == f(src[0:n]) and
    // whether any non-normalized parts were found. If atEOF is false, n will
    // not point past the last segment if this segment might be become
    // non-normalized by appending other runes.
    func (f *formInfo) quickSpan(src input, i, end int, atEOF bool) (n int, ok bool) {
    	var lastCC uint8
    	ss := streamSafe(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasher.java

     * normalizes line endings for text files.  If a file is detected to be binary, we fall back to the existing non-normalized hash.
     *
     * See {@link LineEndingNormalizingInputStreamHasher}.
     */
    public class LineEndingNormalizingResourceHasher extends FallbackHandlingResourceHasher {
        private final LineEndingNormalizingInputStreamHasher hasher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

    import java.util.Map;
    
    /**
     * Fingerprint file system snapshots normalizing the path to the relative path in a hierarchy.
     *
     * File names for root directories are ignored. For root files, the file name is used as normalized path.
     */
    public class RelativePathFingerprintingStrategy extends AbstractDirectorySensitiveFingerprintingStrategy {
        public static final String IDENTIFIER = "RELATIVE_PATH";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/imagepolicy/config_test.go

    		if err != nil && !tt.wantErr {
    			t.Errorf("%s: unexpected error from normalization: %v", tt.test, err)
    		}
    		if err == nil && !reflect.DeepEqual(tt.config, tt.normalizedConfig) {
    			t.Errorf("%s: expected config to be normalized. got: %v expected: %v", tt.test, tt.config, tt.normalizedConfig)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            if (artifact == null) {
                return null;
            }
            MavenArtifact normalized = normalizedArtifacts.get(artifact);
            if (normalized != null) {
                return normalized;
            }
            return normalizedArtifactFor(artifact);
        }
    
        private Map<MavenArtifact, MavenArtifact> normalizedMavenArtifacts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // normalizeLocation returns the result of parsing the full URL, with scheme set to http if missing
    func normalizeLocation(location *url.URL) *url.URL {
    	normalized, _ := url.Parse(location.String())
    	if len(normalized.Scheme) == 0 {
    		normalized.Scheme = "http"
    	}
    	return normalized
    }
    
    // NewUpgradeAwareHandler creates a new proxy handler with a default flush interval. Responder is required for returning
    // errors to the caller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val normalizedDistribution = bucket("${prefix}TestNormalizedDistribution", "Declare a normalized distribution (bin distribution without timestamp in version) to be used in tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	rb.reset()
    	return res
    }
    
    // appendFlush appends the normalized segment to rb.out.
    func appendFlush(rb *reorderBuffer) bool {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		rb.out = append(rb.out, rb.byte[start:end]...)
    	}
    	return true
    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top