Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RELATIVE_PATH (0.35 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. 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)
  4. 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)
  5. 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)
Back to top