Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for cycle (0.18 sec)

  1. src/arena/arena.go

    of Go values and free that space manually all at once, safely. The purpose
    of this functionality is to improve efficiency: manually freeing memory
    before a garbage collection delays that cycle. Less frequent cycles means
    the CPU cost of the garbage collector is incurred less frequently.
    
    This functionality in this package is mostly captured in the Arena type.
    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)
  2. doc/README.md

    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. api/README

    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.
    
    The next/ directory contains the only files intended to be mutated.
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 31 19:22:50 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. SECURITY.md

    ## Supported Versions
    
    We support the past two Go releases (for example, Go 1.17.x and Go 1.18.x when Go 1.18.x is the latest stable release).
    
    See https://go.dev/wiki/Go-Release-Cycle and in particular the
    [Release Maintenance](https://go.dev/wiki/Go-Release-Cycle#release-maintenance)
    part of that page.
    
    ## Reporting a Vulnerability
    
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Sep 22 21:17:24 GMT 2023
    - 426 bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    until there are no variables ready for initialization.
    </p>
    
    <p>
    If any variables are still uninitialized when this
    process ends, those variables are part of one or more initialization cycles,
    and the program is not valid.
    </p>
    
    <p>
    Multiple variables on the left-hand side of a variable declaration initialized
    by single (multi-valued) expression on the right-hand side are initialized
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/api/main_test.go

    	name := fromPath
    	if canonical, ok := w.importMap[fromDir][fromPath]; ok {
    		name = canonical
    	}
    
    	pkg := w.imported[name]
    	if pkg != nil {
    		if pkg == &importing {
    			log.Fatalf("cycle importing package %q", name)
    		}
    		return pkg, nil
    	}
    	w.imported[name] = &importing
    
    	// Determine package files.
    	dir := w.importDir[name]
    	if dir == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  7. doc/go_spec.html

    until there are no variables ready for initialization.
    </p>
    
    <p>
    If any variables are still uninitialized when this
    process ends, those variables are part of one or more initialization cycles,
    and the program is not valid.
    </p>
    
    <p>
    Multiple variables on the left-hand side of a variable declaration initialized
    by single (multi-valued) expression on the right-hand side are initialized
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg runtime, method (*BlockProfileRecord) Stack() []uintptr
    pkg runtime, type BlockProfileRecord struct
    pkg runtime, type BlockProfileRecord struct, Count int64
    pkg runtime, type BlockProfileRecord struct, Cycles int64
    pkg runtime, type BlockProfileRecord struct, embedded StackRecord
    pkg runtime/debug, func FreeOSMemory()
    pkg runtime/debug, func ReadGCStats(*GCStats)
    pkg runtime/debug, func SetGCPercent(int) int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top