Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for globAbs (0.29 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/cmd/vendor/golang.org/x/mod/module/module.go

    		var glob string
    		if i := strings.Index(globs, ","); i >= 0 {
    			glob, globs = globs[:i], globs[i+1:]
    		} else {
    			glob, globs = globs, ""
    		}
    		glob = strings.TrimSuffix(glob, "/")
    		if glob == "" {
    			continue
    		}
    
    		// A glob with N+1 path elements (N slashes) needs to be matched
    		// against the first N+1 path elements of target,
    		// which end just before the N+1'th slash.
    		n := strings.Count(glob, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. operator/pkg/translate/translate.go

    		return "", err
    	}
    	mergedVals, err = util.OverlayTrees(mergedVals, globalUnvalidatedVals)
    	if err != nil {
    		return "", err
    	}
    	c, f := t.ComponentMaps[componentName]
    	if f && c.FlattenValues {
    		globals, ok := mergedVals["global"].(map[string]any)
    		if !ok {
    			return "", fmt.Errorf("global value isn't a map")
    		}
    		components, ok := mergedVals[c.ToHelmValuesTreeRoot].(map[string]any)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/op.go

    	auxString                 // aux is a string
    	auxSym                    // aux is a symbol (a *gc.Node for locals, an *obj.LSym for globals, or nil for none)
    	auxSymOff                 // aux is a symbol, auxInt is an offset
    	auxSymValAndOff           // aux is a symbol, auxInt is a ValAndOff
    	auxTyp                    // aux is a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_experimental.cc

    // function. Otherwise return nullptr in result and error Status from the
    // function.
    //
    // If `library_filename` has already been loaded, we return a cached handle.
    // Device and Kernels/Ops are registered as globals when a library is loaded
    // for the first time.
    TF_Library* TF_LoadPluggableDeviceLibrary(const char* library_filename,
                                              TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	// and URL path.
    	//
    	// Each entry in matchImages is a pattern which can optionally contain a port and a path.
    	// Globs can be used in the domain, but not in the port or the path. Globs are supported
    	// as subdomains like `*.k8s.io` or `k8s.*.io`, and top-level-domains such as `k8s.*`.
    	// Matching partial subdomains like `app*.k8s.io` is also supported. Each glob can only match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top