Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for E03033 (0.43 sec)

  1. src/archive/tar/strconv_test.go

    		// Test base-8 (octal) encoded values.
    		{"0000000\x00", 0, true},
    		{" \x0000000\x00", 0, true},
    		{" \x0000003\x00", 3, true},
    		{"00000000227\x00", 0227, true},
    		{"032033\x00 ", 032033, true},
    		{"320330\x00 ", 0320330, true},
    		{"0000660\x00 ", 0660, true},
    		{"\x00 0000660\x00 ", 0660, true},
    		{"0123456789abcdef", 0, false},
    		{"0123456789\x00abcdef", 0, false},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 09 05:28:50 GMT 2021
    - 14K bytes
    - Viewed (0)
  2. src/archive/tar/reader_test.go

    		wantSize: 01234,
    	}, {
    		input: makeInput(FormatGNU, "3333",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}})...),
    		wantMap:  sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}},
    		wantSize: 03333,
    	}, {
    		input: makeInput(FormatGNU, "",
    			append(append(
    				makeSparseStrings(sparseDatas{{0, 1}, {2, 1}}),
    				[]string{"", ""}...),
    				makeSparseStrings(sparseDatas{{4, 1}, {6, 1}})...)...),
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
Back to top