Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for normalizeUri (0.23 sec)

  1. gradle/shared-with-buildSrc/mirrors.settings.gradle.kts

                    originalUrls.forEach { name, originalUrl ->
                        if (normalizeUrl(originalUrl) == normalizeUrl(this.url.toString()) && mirrorUrls.containsKey(name)) {
                            mirrorUrls.get(name)?.let { this.setUrl(it) }
                        }
                    }
                }
            }
        }
    
        fun normalizeUrl(url: String): String {
            val result = url.replace("https://", "http://")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            } else if (api == Api.RUNTIME_API) {
                Class<?> normalizer;
                if (inputAnnotation == Classpath) {
                    normalizer = ClasspathNormalizer
                } else if (inputAnnotation == CompileClasspath) {
                    normalizer = CompileClasspathNormalizer
                } else {
                    normalizer = null
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            ignoreEmptyDirectories && !normalizer && pathSensitivity != PathSensitivity.NONE ? "DIRECTORY_SENSITIVITY_IGNORE_DIRECTORIES" : "DIRECTORY_SENSITIVITY_DEFAULT"
        }
    
        static String attributeFromPathSensitivity(PathSensitivity pathSensitivity, Class<? extends FileNormalizer> normalizer) {
            if (normalizer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/BaseSamplesTest.java

     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.gradle.exemplar.test.normalizer.FileSeparatorOutputNormalizer;
    import org.gradle.exemplar.test.normalizer.GradleOutputNormalizer;
    import org.gradle.exemplar.test.normalizer.JavaObjectSerializationOutputNormalizer;
    import org.gradle.exemplar.test.runner.SampleModifiers;
    import org.gradle.exemplar.test.runner.SamplesOutputNormalizers;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            val propertyName: String,
            val propertyValue: PropertyValue,
            val optional: Boolean,
            val filePropertyType: InputFilePropertyType,
            val behavior: InputBehavior,
            val normalizer: FileNormalizer?,
            val directorySensitivity: DirectorySensitivity,
            val lineEndingSensitivity: LineEndingSensitivity
        ) : RegisteredProperty()
    
        data class OutputFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RepoScriptBlockUtil.groovy

        }
    
        static String mirrorInitScript() {
            def mirrorConditions = MirroredRepository.values().collect { MirroredRepository mirror ->
                """
                    if (normalizeUrl(repo.url) == normalizeUrl('${mirror.originalUrl}')) {
                        repo.url = '${mirror.mirrorUrl}'
                    }
                """
            }.join("")
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/clientinput/DaemonClientInputForwarder.java

                        dispatch.dispatch(message);
                    }
                });
            }
    
            @Override
            public void readAndForwardText(Normalizer normalizer) {
                executor.execute(() -> {
                    while (true) {
                        String input;
                        try {
                            input = reader.readLine();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultUserInputReceiver.java

        }
    
        @Override
        public void readAndForwardText(final PromptOutputEvent event) {
            UserInputReceiver userInput = getDelegate();
            userInput.readAndForwardText(new UserInputReceiver.Normalizer() {
                @Nullable
                @Override
                public String normalize(String text) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/test-requirements.txt

    #
    certifi==2024.2.2 \
        --hash=sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f \
        --hash=sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1
        # via requests
    charset-normalizer==3.3.2 \
        --hash=sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027 \
        --hash=sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

        }
    
        protected ModelInterpolator newModelInterpolator() {
            UrlNormalizer normalizer = newUrlNormalizer();
            PathTranslator pathTranslator = newPathTranslator();
            RootLocator rootLocator = newRootLocator();
            return new StringVisitorModelInterpolator(pathTranslator, normalizer, rootLocator);
        }
    
        protected ModelVersionProcessor newModelVersionPropertiesProcessor() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top