Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Rec (0.18 sec)

  1. src/archive/tar/strconv.go

    	if n <= 0 {
    		return "", "", s, ErrHeader
    	}
    
    	// Extract everything between the space and the final newline.
    	rec, nl, rem := rest[:n-1], rest[n-1:n], rest[n:]
    	if nl != "\n" {
    		return "", "", s, ErrHeader
    	}
    
    	// The first equals separates the key from the value.
    	k, v, ok = strings.Cut(rec, "=")
    	if !ok {
    		return "", "", s, ErrHeader
    	}
    
    	if !validPAXRecord(k, v) {
    		return "", "", s, ErrHeader
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    			keys = append(keys, k)
    		}
    		sort.Strings(keys)
    
    		// Write each record to a buffer.
    		var buf strings.Builder
    		for _, k := range keys {
    			rec, err := formatPAXRecord(k, paxHdrs[k])
    			if err != nil {
    				return err
    			}
    			buf.WriteString(rec)
    		}
    
    		// Write the extended header file.
    		var name string
    		var flag byte
    		if isGlobal {
    			name = realName
    			if name == "" {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), const MS_POSIXACL ideal-int
    pkg syscall (linux-386), const MS_PRIVATE ideal-int
    pkg syscall (linux-386), const MS_RDONLY ideal-int
    pkg syscall (linux-386), const MS_REC ideal-int
    pkg syscall (linux-386), const MS_RELATIME ideal-int
    pkg syscall (linux-386), const MS_REMOUNT ideal-int
    pkg syscall (linux-386), const MS_RMT_MASK ideal-int
    pkg syscall (linux-386), const MS_SHARED ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. api/go1.1.txt

    pkg syscall (linux-386), const MS_POSIXACL = 65536
    pkg syscall (linux-386), const MS_PRIVATE = 262144
    pkg syscall (linux-386), const MS_RDONLY = 1
    pkg syscall (linux-386), const MS_REC = 16384
    pkg syscall (linux-386), const MS_RELATIME = 2097152
    pkg syscall (linux-386), const MS_REMOUNT = 32
    pkg syscall (linux-386), const MS_RMT_MASK = 8388689
    pkg syscall (linux-386), const MS_SHARED = 1048576
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const MS_POSIXACL ideal-int
    pkg syscall (linux-arm-cgo), const MS_PRIVATE ideal-int
    pkg syscall (linux-arm-cgo), const MS_RDONLY ideal-int
    pkg syscall (linux-arm-cgo), const MS_REC ideal-int
    pkg syscall (linux-arm-cgo), const MS_RELATIME ideal-int
    pkg syscall (linux-arm-cgo), const MS_REMOUNT ideal-int
    pkg syscall (linux-arm-cgo), const MS_RMT_MASK ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top