Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for normalizeUri (0.18 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.normalizer.AnalyzerNormalizer;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    import org.codelibs.fess.suggest.normalizer.NormalizerChain;
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizer.groovy

     * limitations under the License.
     */
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    /**
     * This normalizer converts native component paths and environment
     * information to look like macOS because samples output currently shows
     * the output for macOS and is not yet capable of adapting dynamically
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultInputFilePropertySpec.java

        public DefaultInputFilePropertySpec(
            String propertyName,
            FileNormalizer normalizer,
            FileCollectionInternal files,
            PropertyValue value,
            InputBehavior behavior,
            DirectorySensitivity directorySensitivity,
            LineEndingSensitivity lineEndingSensitivity
        ) {
            super(propertyName, normalizer, files);
            this.behavior = behavior;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi_test.go

    		f.Fuzz(orig)
    
    		// normalize Structural.ValueValidation to zero values if it was nil before
    		normalizer := Visitor{
    			Structural: func(s *Structural) bool {
    				if s.ValueValidation == nil {
    					s.ValueValidation = &ValueValidation{}
    					return true
    				}
    				return false
    			},
    		}
    		normalizer.Visit(orig)
    
    		kubeOpenAPI := orig.ToKubeOpenAPI()
    		bs, err := json.Marshal(kubeOpenAPI)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

                    actionMetadata.getAnnotationHandlerFor(propertyMetadata).visitPropertyValue(propertyMetadata.getPropertyName(), PropertyValue.ABSENT, propertyMetadata, visitor);
                    inputArtifactNormalizer = visitor.normalizer;
                    artifactDirectorySensitivity = visitor.directorySensitivity;
                    artifactLineEndingSensitivity = visitor.lineEndingSensitivity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K 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. 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)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

            private final FileNormalizer normalizer;
            private final DirectorySensitivity directorySensitivity;
            private final LineEndingSensitivity lineEndingSensitivity;
            private final Supplier<FileCollection> files;
    
            public InputFileValueSupplier(
                @Nullable Object value,
                FileNormalizer normalizer,
                DirectorySensitivity directorySensitivity,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            }
    
            private final 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());
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top