Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for octal0 (0.12 sec)

  1. src/html/template/exec_test.go

    	{"binary _", "{{print 0b_1_0_1}}", "5", tVal, true},
    	{"BINARY", "{{print 0B101}}", "5", tVal, true},
    	{"octal0", "{{print 0377}}", "255", tVal, true},
    	{"octal", "{{print 0o377}}", "255", tVal, true},
    	{"octal _", "{{print 0o_3_7_7}}", "255", tVal, true},
    	{"OCTAL", "{{print 0O377}}", "255", tVal, true},
    	{"hex", "{{print 0x123}}", "291", tVal, true},
    	{"hex _", "{{print 0x1_23}}", "291", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"binary _", "{{print 0b_1_0_1}}", "5", tVal, true},
    	{"BINARY", "{{print 0B101}}", "5", tVal, true},
    	{"octal0", "{{print 0377}}", "255", tVal, true},
    	{"octal", "{{print 0o377}}", "255", tVal, true},
    	{"octal _", "{{print 0o_3_7_7}}", "255", tVal, true},
    	{"OCTAL", "{{print 0O377}}", "255", tVal, true},
    	{"hex", "{{print 0x123}}", "291", tVal, true},
    	{"hex _", "{{print 0x1_23}}", "291", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue31747.go

    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    	_ = 1_000i // ERROR "underscore"
    	_ = 0b111i // ERROR "binary"
    	_ = 0o567i // ERROR "octal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/go1_12.go

    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    	_ = 1_000i // ERROR "underscore"
    	_ = 0b111i // ERROR "binary"
    	_ = 0o567i // ERROR "octal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                withExclusiveAccessToCache(baseDir) { cacheDir ->
                    // TODO GlobalCache require(!cacheDir.isDirectory)
                    Files.createDirectories(cacheDir.toPath())
                    chmod(cacheDir, 448) // octal 0700
                    markAccessed(cacheDir)
                    val stateFiles = mutableListOf<File>()
                    val layout = WriteableLayout(cacheDir, stateFiles::add)
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

        /**
         * Sets Unix style permissions. Accept values in two styles of notation:
         * <ul>
         *     <li>NUMERIC notation: uses 3 octal (base-8) digits representing permissions for the 3 categories of users; for example "755"</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/internal/xcoff/ar.go

    	Arprvmem [20]byte // Previous member pointer
    	Ardate   [12]byte // File member date
    	Aruid    [12]byte // File member uid
    	Argid    [12]byte // File member gid
    	Armode   [12]byte // File member mode (octal)
    	Arnamlen [4]byte  // File member name length
    	// _ar_nam is removed because it's easier to get name without it.
    }
    
    // Archive represents an open AIX big archive.
    type Archive struct {
    	ArchiveHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/doc.go

    	\n             newline (== \012)
    	\r             carriage return (== \015)
    	\v             vertical tab character (== \013)
    	\*             literal *, for any punctuation character *
    	\123           octal character code (up to three digits)
    	\x7F           hex character code (exactly two digits)
    	\x{10FFFF}     hex character code
    	\Q...\E        literal text ... even if ... has punctuation
    
    Character class elements:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/net/netip/slow_test.go

    // varyingly accepted by some programs due to an under-specification
    // of the shapes of IPv4 addresses:
    //
    //   - IPv4 as a single 32-bit uint: 4660 (same as "1.2.3.4")
    //   - IPv4 with octal numbers: 0300.0250.0.01 (same as "192.168.0.1")
    //   - IPv4 with hex numbers: 0xc0.0xa8.0x0.0x1 (same as "192.168.0.1")
    //   - IPv4 in "class-B style": 1.2.52 (same as "1.2.3.4")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/fmt/doc.go

    	'+'	always print a sign for numeric values;
    		guarantee ASCII-only output for %q (%+q)
    	'-'	pad with spaces on the right rather than the left (left-justify the field)
    	'#'	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
    		0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
    		for %q, print a raw (backquoted) string if [strconv.CanBackquote]
    		returns true;
    		always print a decimal point for %e, %E, %f, %F, %g and %G;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top