Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for mari (0.19 sec)

  1. src/archive/zip/reader.go

    }
    
    func (r *Reader) initFileList() {
    	r.fileListOnce.Do(func() {
    		// files and knownDirs map from a file/directory name
    		// to an index into the r.fileList entry that we are
    		// building. They are used to mark duplicate entries.
    		files := make(map[string]int)
    		knownDirs := make(map[string]int)
    
    		// dirs[name] is true if name is known to be a directory,
    		// because it appears as a prefix in a path.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  2. src/arena/arena.go

    }
    
    //go:linkname runtime_arena_newArena
    func runtime_arena_newArena() unsafe.Pointer
    
    //go:linkname runtime_arena_arena_New
    func runtime_arena_arena_New(arena unsafe.Pointer, typ any) any
    
    // Mark as noescape to avoid escaping the slice header.
    //
    //go:noescape
    //go:linkname runtime_arena_arena_Slice
    func runtime_arena_arena_Slice(arena unsafe.Pointer, slice any, cap int)
    
    //go:linkname runtime_arena_arena_Free
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    (U+FEFF) if it is the first Unicode code point in the source text.
    A byte order mark may be disallowed anywhere else in the source.
    </p>
    
    <h3 id="Characters">Characters</h3>
    
    <p>
    The following terms are used to denote specific Unicode character classes:
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		return []string{"-m32"}
    	case "arm":
    		return []string{"-marm"} // not thumb
    	case "s390":
    		return []string{"-m31"}
    	case "s390x":
    		return []string{"-m64"}
    	case "mips64", "mips64le":
    		if gomips64 == "hardfloat" {
    			return []string{"-mabi=64", "-mhard-float"}
    		} else if gomips64 == "softfloat" {
    			return []string{"-mabi=64", "-msoft-float"}
    		}
    	case "mips", "mipsle":
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	MRS	ID_PFR1_EL1, R12                   // 2c0138d5
    	MRS	ISR_EL1, R24                       // 18c138d5
    	MRS	MAIR_EL1, R20                      // 14a238d5
    	MSR	R21, MAIR_EL1                      // 15a218d5
    	MRS	MAIR_EL1, R20                      // 14a238d5
    	MSR	R5, MAIR_EL1                       // 05a218d5
    	MRS	MDCCINT_EL1, R23                   // 170230d5
    	MSR	R27, MDCCINT_EL1                   // 1b0210d5
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (linux-386), const SO_DETACH_FILTER ideal-int
    pkg syscall (linux-386), const SO_DOMAIN ideal-int
    pkg syscall (linux-386), const SO_ERROR ideal-int
    pkg syscall (linux-386), const SO_MARK ideal-int
    pkg syscall (linux-386), const SO_NO_CHECK ideal-int
    pkg syscall (linux-386), const SO_OOBINLINE ideal-int
    pkg syscall (linux-386), const SO_PASSCRED ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. src/bytes/bytes.go

    				b = append(b, replacement...)
    			}
    			continue
    		}
    		invalid = false
    		b = append(b, s[i:i+wid]...)
    		i += wid
    	}
    	return b
    }
    
    // isSeparator reports whether the rune could mark a word boundary.
    // TODO: update when package unicode captures more of the properties.
    func isSeparator(r rune) bool {
    	// ASCII alphanumerics and underscore are not separators
    	if r <= 0x7F {
    		switch {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    (U+FEFF) if it is the first Unicode code point in the source text.
    A byte order mark may be disallowed anywhere else in the source.
    </p>
    
    <h3 id="Characters">Characters</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (linux-386), const SO_DONTROUTE = 5
    pkg syscall (linux-386), const SO_ERROR = 4
    pkg syscall (linux-386), const SO_KEEPALIVE = 9
    pkg syscall (linux-386), const SO_LINGER = 13
    pkg syscall (linux-386), const SO_MARK = 36
    pkg syscall (linux-386), const SO_NO_CHECK = 11
    pkg syscall (linux-386), const SO_OOBINLINE = 10
    pkg syscall (linux-386), const SO_PASSCRED = 16
    pkg syscall (linux-386), const SO_PASSSEC = 34
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg debug/elf, const R_LARCH_JUMP_SLOT = 5 #46229
    pkg debug/elf, const R_LARCH_JUMP_SLOT R_LARCH #46229
    pkg debug/elf, const R_LARCH_MARK_LA = 20 #46229
    pkg debug/elf, const R_LARCH_MARK_LA R_LARCH #46229
    pkg debug/elf, const R_LARCH_MARK_PCREL = 21 #46229
    pkg debug/elf, const R_LARCH_MARK_PCREL R_LARCH #46229
    pkg debug/elf, const R_LARCH_NONE = 0 #46229
    pkg debug/elf, const R_LARCH_NONE R_LARCH #46229
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
Back to top