Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for nextGen (0.32 sec)

  1. src/runtime/traceruntime.go

    	// is during a syscall.
    	tl.eventWriter(traceGoSyscall, traceProcIdle).commit(traceEvProcStart, traceArg(pp.id), pp.trace.nextSeq(tl.gen))
    }
    
    // ProcStop traces a ProcStop event.
    func (tl traceLocker) ProcStop(pp *p) {
    	// The only time a goroutine is allowed to have its Proc moved around
    	// from under it is during a syscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    	// "priority" for a value
    	score := f.Cache.allocInt8Slice(f.NumValues())
    	defer f.Cache.freeInt8Slice(score)
    
    	// maps mem values to the next live memory value
    	nextMem := f.Cache.allocValueSlice(f.NumValues())
    	defer f.Cache.freeValueSlice(nextMem)
    
    	// inBlockUses records whether a value is used in the block
    	// in which it lives. (block control values don't count as uses.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/term/term_unix.go

    	termios.Iflag &^= unix.IGNBRK | unix.BRKINT | unix.PARMRK | unix.ISTRIP | unix.INLCR | unix.IGNCR | unix.ICRNL | unix.IXON
    	termios.Oflag &^= unix.OPOST
    	termios.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
    	termios.Cflag &^= unix.CSIZE | unix.PARENB
    	termios.Cflag |= unix.CS8
    	termios.Cc[unix.VMIN] = 1
    	termios.Cc[unix.VTIME] = 0
    	if err := unix.IoctlSetTermios(fd, ioctlWriteTermios, termios); err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                            int nexts = str.indexOf('[', si + 1);
                            int nexte = str.indexOf(']', si);
                            if ( nexts >= 0 && nexte >= 0 && nexte == nexts - 1 ) {
                                server = str.substring(si, nexte + 1);
                                si = nexts;
                            }
                            else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

                        break;
                    }
    
                    // walk up trying to find a match, do not go up to the root
                    int nextSep = link.lastIndexOf('\\');
                    if ( nextSep > 0 ) {
                        link = link.substring(0, nextSep);
                    }
                    else {
                        if ( log.isTraceEnabled() ) {
                            log.trace("Not found " + link);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    		extLen: len(benchmarkName("", maxprocs)),
    	}
    	var bs []InternalBenchmark
    	for _, Benchmark := range benchmarks {
    		if _, matched, _ := ctx.match.fullName(nil, Benchmark.Name); matched {
    			bs = append(bs, Benchmark)
    			benchName := benchmarkName(Benchmark.Name, maxprocs)
    			if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
    				ctx.maxLen = l
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                    curReq.setResponse(curResp);
    
                    ServerMessageBlock nextReq = curReq.getAndx();
                    if ( nextReq == null ) {
                        break;
                    }
                    ServerMessageBlock nextResp = curResp.getAndx();
                    nextReq.setResponse(nextReq);
    
                    if ( ! ( nextReq instanceof AndXServerMessageBlock ) || ! ( nextResp instanceof AndXServerMessageBlock )) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    				firstReg = int(reg)
    				nextReg = firstReg
    				arrangement = curArrangement
    			} else if curArrangement != arrangement {
    				p.errorf("inconsistent arrangement in ARM64 register list")
    			} else if nextReg != int(reg) {
    				p.errorf("incontiguous register in ARM64 register list: %s", name)
    			}
    			regCnt++
    			nextReg = (nextReg + 1) % 32
    		case sys.ARM:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/debug/macho/macho.go

    		Ntoc           uint32
    		Modtaboff      uint32
    		Nmodtab        uint32
    		Extrefsymoff   uint32
    		Nextrefsyms    uint32
    		Indirectsymoff uint32
    		Nindirectsyms  uint32
    		Extreloff      uint32
    		Nextrel        uint32
    		Locreloff      uint32
    		Nlocrel        uint32
    	}
    
    	// A DylibCmd is a Mach-O load dynamic library command.
    	DylibCmd struct {
    		Cmd            LoadCmd
    		Len            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    // value between sep and end as an integer.
    // If seekBack fails, the returned error will reference what.
    func seekBack(l string, sep byte, end int, what string) (value int, nextSep int, err error) {
    	// Since we're seeking backwards and we know only ASCII is legal for these values,
    	// we can ignore the possibility of non-ASCII characters.
    	for start := end - 1; start >= 0; start-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
Back to top