Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PRN (0.03 sec)

  1. src/internal/filepathlite/path_windows.go

    	}
    	return path, nil
    }
    
    // isReservedName reports if name is a Windows reserved device name.
    // It does not detect names with an extension, which are also reserved on some Windows versions.
    //
    // For details, search for PRN in
    // https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file.
    func isReservedName(name string) bool {
    	// Device names can have arbitrary trailing characters following a dot or colon.
    	base := name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

        private static final int MAX_RANDOM_PART_VALUE = Integer.parseInt("zzzzz", ALL_DIGITS_AND_LETTERS_RADIX);
        private static final Pattern WINDOWS_RESERVED_NAMES = Pattern.compile("(con)|(prn)|(aux)|(nul)|(com\\d)|(lpt\\d)", Pattern.CASE_INSENSITIVE);
    
        private String prefix;
        private TestFile dir;
        private boolean cleanup = true;
        private boolean suppressCleanupErrors = false;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

        }
    
        private File doWriteReport() {
            File reportFile = new File(htmlReportOutputDirectory, "dependency-verification-report.html");
            try (Writer prn = new OutputStreamWriter(new FileOutputStream(reportFile, false), StandardCharsets.UTF_8)) {
                prn.write(contents.toString());
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
            return reportFile;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    	}
    	return nil
    }
    
    // badWindowsNames are the reserved file path elements on Windows.
    // See https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file
    var badWindowsNames = []string{
    	"CON",
    	"PRN",
    	"AUX",
    	"NUL",
    	"COM0",
    	"COM1",
    	"COM2",
    	"COM3",
    	"COM4",
    	"COM5",
    	"COM6",
    	"COM7",
    	"COM8",
    	"COM9",
    	"LPT0",
    	"LPT1",
    	"LPT2",
    	"LPT3",
    	"LPT4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top