Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for globAbs (0.12 sec)

  1. cmd/globals.go

    Harshavardhana <******@****.***> 1717070292 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/testing/fstest/testfs.go

    }
    
    // checkGlob checks that various glob patterns work if the file system implements GlobFS.
    func (t *fsTester) checkGlob(dir string, list []fs.DirEntry) {
    	if _, ok := t.fsys.(fs.GlobFS); !ok {
    		return
    	}
    
    	// Make a complex glob pattern prefix that only matches dir.
    	var glob string
    	if dir != "." {
    		elem := strings.Split(dir, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/runtime/mbarrier.go

    //
    // Global writes:
    //
    // The Go garbage collector requires write barriers when heap pointers
    // are stored in globals. Many garbage collectors ignore writes to
    // globals and instead pick up global -> heap pointers during
    // termination. This increases pause time, so we instead rely on write
    // barriers for writes to globals so that we don't have to rescan
    // global during mark termination.
    //
    //
    // Publication ordering:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    // the once lock is held by the parent process and then calls
    // _os_once_gate_corruption_abort. The allocation is setting up the
    // globals for the notification subsystem. See the source code at [1].
    // To work around this, we can allocate the globals earlier in the Go
    // program's lifetime, before any execs are involved, by calling any
    // notify routine that is exported, calls _notify_globals, and doesn't do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    	the explanation below is also the relevant runtime/metrics metric for each field.
    	Currently, it is:
    		gc # @#s #%: #+#+# ms clock, #+#/#/#+# ms cpu, #->#-># MB, # MB goal, # MB stacks, #MB globals, # P
    	where the fields are as follows:
    		gc #         the GC number, incremented at each GC
    		@#s          time in seconds since program start
    		#%           percentage of time spent in GC since program start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/fetch.go

    	enabled   bool                                   // whether to use go.sum at all
    }
    
    type modSumStatus struct {
    	used, dirty bool
    }
    
    // Reset resets globals in the modfetch package, so previous loads don't affect
    // contents of go.sum files.
    func Reset() {
    	GoSumFile = ""
    	WorkspaceGoSumFiles = nil
    
    	// Uses of lookupCache and downloadCache both can call checkModSum,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. src/cmd/cover/cover.go

    	} else {
    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    // parseFlags sets the profile and counterStmt globals and performs validations.
    func parseFlags() error {
    	profile = *htmlOut
    	if *funcOut != "" {
    		if profile != "" {
    			return fmt.Errorf("too many options")
    		}
    		profile = *funcOut
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "SP", zeroWidth: true},                                       // stack pointer
    	{name: "SB", typ: "Uintptr", zeroWidth: true},                       // static base pointer (a.k.a. globals pointer)
    	{name: "Invalid"},                                                   // unused value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top