Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 269 for goTo (0.12 sec)

  1. docs/debugging/xl-meta/main.go

    								combineSharedBlocks[block] = combineShared
    								fmt.Println("Retrying with merged data")
    								if addedFiles >= len(files[partIdx]) {
    									attempt++
    									goto nextAttempt
    								}
    							}
    						}
    					}
    				}
    				if m.blockOffset != len(combined) {
    					return fmt.Errorf("Block offset mismatch. Expected %d got %d", m.blockOffset, len(combined))
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    					}
    					cond = cond + "." + str
    					continue
    				}
    				if tok == ':' {
    					// Labels.
    					p.pendingLabels = append(p.pendingLabels, word)
    					goto next
    				}
    			}
    			if tok == scanner.EOF {
    				p.errorf("unexpected EOF")
    				return "", "", nil, false
    			}
    			// Split operands on comma. Also, the old syntax on x86 for a "register pair"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/runtime/trace.go

    				printlock()
    				println("runtime: got trace reader", g2, g2.goid)
    				throw("unexpected trace reader")
    			}
    
    			return true
    		}, nil, waitReasonTraceReaderBlocked, traceBlockSystemGoroutine, 2)
    		goto top
    	}
    
    	return buf
    }
    
    // readTrace0 is ReadTrace's continuation on g0. This must run on the
    // system stack because it acquires trace.lock.
    //
    //go:systemstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    			v = d - 'A' + 10
    		default:
    			n = 0
    			err = strconv.ErrSyntax
    			goto Error
    		}
    		if int(v) >= base {
    			n = 0
    			err = strconv.ErrSyntax
    			goto Error
    		}
    
    		if n >= cutoff {
    			// n*base overflows
    			n = 1<<64 - 1
    			err = strconv.ErrRange
    			goto Error
    		}
    		n *= uint64(base)
    
    		n1 := n + uint64(v)
    		if n1 < n || n1 > maxVal {
    			// n+v overflows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc.go

    				throw("bad summary data")
    			}
    			addr = chunkBase(i) + uintptr(j)*pageSize
    			searchAddr = offAddr{chunkBase(i) + uintptr(searchIdx)*pageSize}
    			goto Found
    		}
    	}
    	// We failed to use a searchAddr for one reason or another, so try
    	// the slow path.
    	addr, searchAddr = p.find(npages)
    	if addr == 0 {
    		if npages == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    			return *(*func())(add(p.slotsPtr, i*goarch.PtrSize)), true
    		}
    
    	Recheck:
    		if d := gp._defer; d != nil && d.sp == uintptr(p.sp) {
    			if d.rangefunc {
    				deferconvert(d)
    				popDefer(gp)
    				goto Recheck
    			}
    
    			fn := d.fn
    
    			// TODO(mdempsky): Instead of having each deferproc call have
    			// its own "deferreturn(); return" sequence, we should just make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	// unnecessarily. See issue #35470.
    	p = ctxt.StartUnsafePoint(p, newprog)
    
    	var to_done, to_more *obj.Prog
    
    	if framesize <= abi.StackSmall {
    		// small stack
    		//	// if SP > stackguard { goto done }
    		//	BLTU	stackguard, SP, done
    		p = obj.Appendp(p, newprog)
    		p.As = ABLTU
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REG_X6
    		p.Reg = REG_SP
    		p.To.Type = obj.TYPE_BRANCH
    		to_done = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. src/runtime/time.go

    	}
    
    	if t.astate.Load()&(timerModified|timerZombie) == 0 && tw.when > now {
    		// Fast path: not ready to run.
    		return tw.when
    	}
    
    	t.lock()
    	if t.updateHeap() {
    		t.unlock()
    		goto Redo
    	}
    
    	if t.state&timerHeaped == 0 || t.state&timerModified != 0 {
    		badTimer()
    	}
    
    	if t.when > now {
    		// Not ready to run.
    		t.unlock()
    		return t.when
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/order.go

    	if ir.IsAddressable(n) {
    		if name, ok := ir.OuterValue(n).(*ir.Name); ok && name.Op() == ir.ONAME {
    			if name.Class == ir.PAUTO && !name.Addrtaken() && ssa.CanSSA(name.Type()) {
    				goto Copy
    			}
    		}
    
    		return n
    	}
    
    Copy:
    	return o.copyExpr(n)
    }
    
    // mapKeyTemp prepares n to be a key in a map runtime call and returns n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    					if b, ok = d.mustgetc(); !ok {
    						return nil, d.err
    					}
    					if b != s[i] {
    						for j := 0; j < i; j++ {
    							d.buf.WriteByte(s[j])
    						}
    						depth++
    						goto HandleB
    					}
    				}
    
    				// Remove < that was written above.
    				d.buf.Truncate(d.buf.Len() - 1)
    
    				// Look for terminator.
    				var b0, b1 byte
    				for {
    					if b, ok = d.mustgetc(); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top