Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for normalizeUri (0.56 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizer.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging
    
    import groovy.transform.CompileStatic
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    @CompileStatic
    class DependencyInsightOutputNormalizer implements OutputNormalizer {
    
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizer.groovy

     * limitations under the License.
     */
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Removes Scala Zinc compilation time logging from the build-init Scala samples output.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmptyLineTrimmerOutputNormalizer.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Allows a blank empty line in your sample output to match a blank line with any number of spaces in the actual output.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

            and:
            def e = thrown(Exception)
            e.message == "Boom!"
        }
    
        private static HashCode configurationHashOf(ConfigurableNormalizer normalizer) {
            def hasher = Hashing.md5().newHasher()
            normalizer.appendConfigurationToHasher(hasher)
            return hasher.hash()
        }
    
        private static byte[] bytesOf(Class<?> clazz) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SampleOutputNormalizer.groovy

    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.internal.logging.ConsoleRenderer
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    @CompileStatic
    class SampleOutputNormalizer implements OutputNormalizer {
        private static final String NORMALIZED_SAMPLES_PATH = "/home/user/gradle/samples"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/syscall/exec_windows.go

    		}
    		if isSlash(p[2]) {
    			return p, nil
    		} else {
    			d, err := normalizeDir(dir)
    			if err != nil {
    				return "", err
    			}
    			if volToUpper(int(p[0])) == volToUpper(int(d[0])) {
    				return FullPath(d + "\\" + p[2:])
    			} else {
    				return FullPath(p)
    			}
    		}
    	} else {
    		// no drive letter
    		d, err := normalizeDir(dir)
    		if err != nil {
    			return "", err
    		}
    		if isSlash(p[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/SpringBootWebAppTestOutputNormalizer.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * Removes extra empty lines from `spring-boot-web-application` sample output.
     * Before:
     * <pre>
     > Task :app:compileJava
    
     > Task :app:processResources
     > Task :app:classes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K 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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    import java.util.regex.Pattern
    
    /**
     * Removes harmless warnings from the build-init Kotlin samples output.
     *
     * The warnings are produced by the Kotlin compiler when mixing Java versions:
    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. 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)
Back to top