Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 499 for normalizeID (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/UrlNormalizingPostProcessor.java

        }
    
        private UrlNormalizer normalizer;
    
        UrlNormalizingPostProcessor(UrlNormalizer normalizer) {
            this.normalizer = normalizer;
        }
    
        @Override
        public Object execute(String expression, Object value) {
            if (value != null && URL_EXPRESSIONS.contains(expression)) {
                return normalizer.normalize(value.toString());
            }
    
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelUrlNormalizer.java

    import org.apache.maven.api.services.ModelBuilderRequest;
    
    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizerTest.groovy

     */
    
    package org.gradle.integtests.fixtures.logging
    
    import spock.lang.Specification
    
    class DependencyInsightOutputNormalizerTest extends Specification {
    
        def normalizer = new DependencyInsightOutputNormalizer()
    
        def 'normalizes single-digit requested JDK version in "new" dependencyInsight report'() {
            given:
            def originalOutput = '''
        | Attribute Name                 | Provided | Requested    |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/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: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

     * its output much. This normalizer allows to reuse the same "golden" output files when testing such
     * samples with the configuration cache enabled.
     */
    public class ConfigurationCacheOutputCleaner implements OutputNormalizer {
        // The configuration of the normalizers is static (defined in the annotations), so this
        // normalizer is going to be applied everywhere. We don't want, however, to remove configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. maven-model-builder/src/main/java/org/apache/maven/model/path/ModelUrlNormalizer.java

    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                            maybeClosed();
                            break;
                        } else {
                            String normalized = normalizer.normalize(input);
                            if (normalized != null) {
                                dispatch.dispatch(new UserResponse(normalized));
                                break;
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SpringBootWebAppTestOutputNormalizer.groovy

            int buildSuccessfulLineIndex = lines.indexOf("BUILD SUCCESSFUL in 0s")
            assert buildSuccessfulLineIndex != -1
    
            List<String> normalized = lines.subList(0, buildSuccessfulLineIndex).grep { !it.isEmpty() } + "" + lines.subList(buildSuccessfulLineIndex, lines.size())
            return normalized.join("\n")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/html/template/url.go

    func urlEscaper(args ...any) string {
    	return urlProcessor(false, args...)
    }
    
    // urlNormalizer normalizes URL content so it can be embedded in a quote-delimited
    // string or parenthesis delimited url(...).
    // The normalizer does not encode all HTML specials. Specifically, it does not
    // encode '&' so correct embedding in an HTML attribute requires escaping of
    // '&' to '&amp;'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
Back to top