Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for RELATIVE_PATH (0.15 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/InputNormalizer.java

    // TODO Break this up between simple normalizers and Java classpath normalizers
    //      The latter should be moved to :normalization-java
    public enum InputNormalizer implements FileNormalizer {
        ABSOLUTE_PATH(false),
        RELATIVE_PATH(false),
        NAME_ONLY(false),
        IGNORE_PATH(true),
        RUNTIME_CLASSPATH(true),
        COMPILE_CLASSPATH(true);
    
        private final boolean ignoreDirectories;
        private final String description;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/OutputNormalizer.java

     */
    
    package org.gradle.internal.execution.model;
    
    import org.gradle.internal.fingerprint.FileNormalizer;
    
    /**
     * {@link FileNormalizer} used for output files.
     *
     * Like {@link InputNormalizer#RELATIVE_PATH}, but ignoring missing files.
     */
    public enum OutputNormalizer implements FileNormalizer {
        INSTANCE;
    
        @Override
        public boolean isIgnoringDirectories() {
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFileCollectionFingerprinter.java

        }
    
        @Override
        public FileNormalizer getNormalizer() {
            return InputNormalizer.RELATIVE_PATH;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResultTest.groovy

            InputNormalizer.COMPILE_CLASSPATH | FINGERPRINTING_STRATEGY_COMPILE_CLASSPATH
            InputNormalizer.ABSOLUTE_PATH     | FINGERPRINTING_STRATEGY_ABSOLUTE_PATH
            InputNormalizer.RELATIVE_PATH     | FINGERPRINTING_STRATEGY_RELATIVE_PATH
            InputNormalizer.NAME_ONLY         | FINGERPRINTING_STRATEGY_NAME_ONLY
            InputNormalizer.IGNORE_PATH       | FINGERPRINTING_STRATEGY_IGNORED_PATH
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:37:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

     */
    public class RelativePathFingerprintingStrategy extends AbstractDirectorySensitiveFingerprintingStrategy {
        public static final String IDENTIFIER = "RELATIVE_PATH";
    
        private final Interner<String> stringInterner;
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            }
    
            with(aCompileJava["options.sourcepath"] as Map<String, ?>) {
                hash != null
                roots.empty
                normalization == "RELATIVE_PATH"
                attributes == ['DIRECTORY_SENSITIVITY_IGNORE_DIRECTORIES', 'FINGERPRINTING_STRATEGY_RELATIVE_PATH', 'LINE_ENDING_SENSITIVITY_DEFAULT']
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsResultFilePropertyVisitState.java

            .put(InputNormalizer.COMPILE_CLASSPATH, FingerprintingStrategy.COMPILE_CLASSPATH_IDENTIFIER)
            .put(InputNormalizer.ABSOLUTE_PATH, AbsolutePathFingerprintingStrategy.IDENTIFIER)
            .put(InputNormalizer.RELATIVE_PATH, RelativePathFingerprintingStrategy.IDENTIFIER)
            .put(InputNormalizer.NAME_ONLY, NameOnlyFingerprintingStrategy.IDENTIFIER)
            .put(InputNormalizer.IGNORE_PATH, IgnoredPathFingerprintingStrategy.IDENTIFIER)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

                                   const char* extension);
    
      // Given directory = "dir", relative_path = "test.xml",
      // returns "dir/test.xml".
      // On Windows, uses \ as the separator rather than /.
      static FilePath ConcatPaths(const FilePath& directory,
                                  const FilePath& relative_path);
    
      // Returns a pathname for a file that does not currently exist. The pathname
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

                                   const char* extension);
    
      // Given directory = "dir", relative_path = "test.xml",
      // returns "dir/test.xml".
      // On Windows, uses \ as the separator rather than /.
      static FilePath ConcatPaths(const FilePath& directory,
                                  const FilePath& relative_path);
    
      // Returns a pathname for a file that does not currently exist. The pathname
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/tasks/AbstractSnapshotInputsBuildOperationResultTest.groovy

            def inputFileProperty = Mock(InputFilePropertySpec) {
                getDirectorySensitivity() >> DEFAULT
                getLineEndingNormalization() >> NORMALIZE_LINE_ENDINGS
                getNormalizer() >> InputNormalizer.RELATIVE_PATH
                getPropertyName() >> 'inputFiles'
            }
            def snapshots = directory('/input', [
                directory('/input/foo', []),
            ])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top