Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for moving (0.19 sec)

  1. src/archive/tar/common.go

    // file support represent sparse files in the sparseDatas form. That is, they
    // specify the fragments in the file that has data, and treat everything else as
    // having zero bytes. As such, the encoding and decoding logic in this package
    // deals with sparseDatas.
    //
    // However, the external API uses sparseHoles instead of sparseDatas because the
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const RTM_IFINFO2 ideal-int
    pkg syscall (darwin-arm64), const RTM_LOCK = 8
    pkg syscall (darwin-arm64), const RTM_LOCK ideal-int
    pkg syscall (darwin-arm64), const RTM_LOSING = 5
    pkg syscall (darwin-arm64), const RTM_LOSING ideal-int
    pkg syscall (darwin-arm64), const RTM_MISS = 7
    pkg syscall (darwin-arm64), const RTM_MISS ideal-int
    pkg syscall (darwin-arm64), const RTM_NEWADDR = 12
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const RTM_IFINFO ideal-int
    pkg syscall (freebsd-arm64), const RTM_LOCK = 8
    pkg syscall (freebsd-arm64), const RTM_LOCK ideal-int
    pkg syscall (freebsd-arm64), const RTM_LOSING = 5
    pkg syscall (freebsd-arm64), const RTM_LOSING ideal-int
    pkg syscall (freebsd-arm64), const RTM_MISS = 7
    pkg syscall (freebsd-arm64), const RTM_MISS ideal-int
    pkg syscall (freebsd-arm64), const RTM_NEWADDR = 12
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (darwin-386), const RTM_IFINFO ideal-int
    pkg syscall (darwin-386), const RTM_IFINFO2 ideal-int
    pkg syscall (darwin-386), const RTM_LOCK ideal-int
    pkg syscall (darwin-386), const RTM_LOSING ideal-int
    pkg syscall (darwin-386), const RTM_MISS ideal-int
    pkg syscall (darwin-386), const RTM_NEWADDR ideal-int
    pkg syscall (darwin-386), const RTM_NEWMADDR 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)
  5. src/cmd/api/boring_test.go

    Russ Cox <******@****.***> 1692199082 -0400
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 16 16:02:26 GMT 2023
    - 300 bytes
    - Viewed (0)
  6. api/README

    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/bytes/bytes.go

    // upper case, giving priority to the special casing rules.
    func ToUpperSpecial(c unicode.SpecialCase, s []byte) []byte {
    	return Map(c.ToUpper, s)
    }
    
    // ToLowerSpecial treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their
    // lower case, giving priority to the special casing rules.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    		return 0
    	}
    	r, ok := p.registerReference(name)
    	if !ok {
    		return 0
    	}
    	reg := r - p.arch.Register["R0"]
    	if reg < 0 {
    		// Could happen for an architecture having other registers prefixed by R
    		p.errorf("expected g or R0 through R15; found %s", name)
    		return 0
    	}
    	return uint16(reg)
    }
    
    // Note: There are two changes in the expression handling here
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. doc/go_spec.html

    	<code>A</code> must have all methods of <code>C</code>, if any,
    	and corresponding method types must unify exactly.
    </li>
    </ul>
    
    <p>
    When solving type equations from type constraints,
    solving one equation may infer additional type arguments,
    which in turn may enable solving other equations that depend
    on those type arguments.
    Type inference repeats type unification as long as new type
    arguments are inferred.
    </p>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  10. doc/asm.html

    Otherwise, the local stack frame must not contain pointers,
    and the assembly must confirm this fact by executing the
    pseudo-instruction <code>NO_LOCAL_POINTERS</code>.
    Because stack resizing is implemented by moving the stack,
    the stack pointer may change during any function call:
    even pointers to stack data must not be kept in local variables.
    </p>
    
    <p>
    Assembly functions should always be given Go prototypes,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top