Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RELATIVE_PATH (0.37 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. 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