Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 159 of 159 for parentuid (0.24 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    			EvGoSysBlock, EvGoBlockGC:
    			p.lastG = 0
    		case EvGoSysExit, EvGoWaiting, EvGoInSyscall:
    			ev.G = ev.Args[0]
    		case EvUserTaskCreate:
    			// e.Args 0: taskID, 1:parentID, 2:nameID
    		case EvUserRegion:
    			// e.Args 0: taskID, 1: mode, 2:nameID
    		case EvUserLog:
    			// e.Args 0: taskID, 1:keyID, 2: stackID, 3: messageID
    			// raw.sargs 0: message
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    	lockedm       muintptr
    	sig           uint32
    	writebuf      []byte
    	sigcode0      uintptr
    	sigcode1      uintptr
    	sigpc         uintptr
    	parentGoid    uint64          // goid of goroutine that created this goroutine
    	gopc          uintptr         // pc of go statement that created this goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. mimetype */
        String INDEX_FIELD_MIMETYPE = "index.field.mimetype";
    
        /** The key of the configuration. e.g. parent_id */
        String INDEX_FIELD_parent_id = "index.field.parent_id";
    
        /** The key of the configuration. e.g. important_content */
        String INDEX_FIELD_important_content = "index.field.important_content";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// Show what created goroutine, except main goroutine (goid 1).
    	pc := gp.gopc
    	f := findfunc(pc)
    	if f.valid() && showframe(f.srcFunc(), gp, false, abi.FuncIDNormal) && gp.goid != 1 {
    		printcreatedby1(f, pc, gp.parentGoid)
    	}
    }
    
    func printcreatedby1(f funcInfo, pc uintptr, goid uint64) {
    	print("created by ")
    	printFuncName(funcname(f))
    	if goid != 0 {
    		print(" in goroutine ", goid)
    	}
    	print("\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	if !ok {
    		return module.Version{}
    	}
    	return pkg.mod
    }
    
    // Lookup returns the source directory, import path, and any loading error for
    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	NFC_SDP_ATTR_SAP                  = 0x2
    )
    
    type LandlockRulesetAttr struct {
    	Access_fs  uint64
    	Access_net uint64
    }
    
    type LandlockPathBeneathAttr struct {
    	Allowed_access uint64
    	Parent_fd      int32
    }
    
    const (
    	LANDLOCK_RULE_PATH_BENEATH = 0x1
    )
    
    const (
    	IPC_CREAT   = 0x200
    	IPC_EXCL    = 0x400
    	IPC_NOWAIT  = 0x800
    	IPC_PRIVATE = 0x0
    
    	ipc_64 = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    for(const id in rawStackFrames){const node=this.stackFrameTree_.getNode('g'+id);const parentId=node.parentId;let parentNode=undefined;if(parentId!==undefined){parentNode=this.stackFrameTree_.getNode('g'+parentId);if(parentNode===undefined){this.model_.importWarning({type:'metadata_parse_error',message:'Missing parent frame with ID '+parentId+' for stack frame \''+node.name+'\' (ID '+node.id+').'});}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (2)
  8. src/runtime/proc.go

    	newg.sched.pc = abi.FuncPCABI0(goexit) + sys.PCQuantum // +PCQuantum so that previous instruction is in same function
    	newg.sched.g = guintptr(unsafe.Pointer(newg))
    	gostartcallfn(&newg.sched, fn)
    	newg.parentGoid = callergp.goid
    	newg.gopc = callerpc
    	newg.ancestors = saveAncestors(callergp)
    	newg.startpc = fn.fn
    	if isSystemGoroutine(newg, false) {
    		sched.ngsys.Add(1)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. test-site/activator-launch-1.3.2.jar

    private java.util.Map confs; private java.util.Map dependencyArtifacts; private java.util.Map includeRules; private java.util.Map excludeRules; private boolean isForce; private boolean isChanging; private org.apache.ivy.core.module.id.ModuleRevisionId parentId; private boolean isTransitive; private org.apache.ivy.plugins.namespace.Namespace namespace; private final ModuleDescriptor md; private org.apache.ivy.core.module.id.ModuleRevisionId sourceModule; private java.util.Map doesExcludeCache; public static...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top