Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LPT (0.02 sec)

  1. 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)
  2. src/internal/filepathlite/path_windows.go

    		case "CON", "PRN", "AUX", "NUL":
    			return true
    		}
    	}
    	if len(name) >= 4 {
    		switch string([]byte{toUpper(name[0]), toUpper(name[1]), toUpper(name[2])}) {
    		case "COM", "LPT":
    			if len(name) == 4 && '1' <= name[3] && name[3] <= '9' {
    				return true
    			}
    			// Superscript ¹, ², and ³ are considered numbers as well.
    			switch name[3:] {
    			case "\u00b2", "\u00b3", "\u00b9":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    			t.Errorf("check failed for testcase %s -- wanted:\n%s\ngot:%s\n",
    				tc.tag, tc.expected, foundParams)
    		}
    	}
    }
    func TestIssue54320(t *testing.T) {
    	// Check that when trampolines are used, the DWARF LPT is correctly
    	// emitted in the final binary
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	const prog = `
    package main
    
    import "fmt"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    	{"com7", false},
    	{"com8", false},
    	{"com9", false},
    	{"com¹", false},
    	{"com²", false},
    	{"com³", false},
    	{"com¹ : a", false},
    	{"cOm1", false},
    	{"lpt1", false},
    	{"LPT1", false},
    	{"lpt³", false},
    	{"./nul", false},
    	{`\`, false},
    	{`\a`, false},
    	{`C:`, false},
    	{`C:\a`, false},
    	{`..\a`, false},
    	{`a/../c:`, false},
    	{`CONIN$`, false},
    	{`conin$`, false},
    	{`CONOUT$`, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top