Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for normalizeDir (2.62 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

        }
    
        private Collection<Ref> getRemoteRefs(GitVersionControlSpec gitSpec, boolean tags, boolean heads) {
            try {
                return configureTransport(Git.lsRemoteRepository()).setRemote(normalizeUri(gitSpec.getUrl())).setTags(tags).setHeads(heads).call();
            } catch (URISyntaxException | GitAPIException e) {
                throw wrapGitCommandException("ls-remote", gitSpec.getUrl(), null, e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileNormalizer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    public interface FileNormalizer {
        /**
         * Does the normalizer always ignore directories.
         */
        boolean isIgnoringDirectories();
    
        @Override
        String toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 840 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         * @since 3.1
         */
        TaskInputFilePropertyBuilder withPathSensitivity(PathSensitivity sensitivity);
    
        /**
         * Sets the normalizer to use for this property.
         *
         * @since 4.3
         */
        TaskInputFilePropertyBuilder withNormalizer(Class<? extends FileNormalizer> normalizer);
    
        /**
         * Ignore directories during up-to-date checks and build cache key calculations.  When this is set, only the contents of directories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GradleWelcomeOutputNormalizer.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.logging
    
    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    class GradleWelcomeOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String commandOutput, ExecutionMetadata executionMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top