Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 108 for goTo (0.05 sec)

  1. src/runtime/netpoll_epoll.go

    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if waitms > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	var toRun gList
    	delta := int32(0)
    	for i := int32(0); i < n; i++ {
    		ev := events[i]
    		if ev.Events == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadcode.go

    		// Phi arguments always come from a predecessor block,
    		// whereas copies don't. This matters in loops like:
    		// 1: x = (Phi y)
    		//    y = (Add x 1)
    		//    goto 1
    		// If we replace Phi->Copy, we get
    		// 1: x = (Copy y)
    		//    y = (Add x 1)
    		//    goto 1
    		// (Phi y) refers to the *previous* value of y, whereas
    		// (Copy y) refers to the *current* value of y.
    		// The modified code has a cycle and the scheduler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/identity.go

    				return true
    			}
    			// fall through to unnamed type comparison for complex types.
    			goto cont
    		}
    		// Special case: we keep byte/uint8 and rune/int32
    		// separate for error messages. Treat them as equal.
    		switch t1.kind {
    		case TUINT8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/netpoll_kqueue.go

    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if delay > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	var toRun gList
    	delta := int32(0)
    	for i := 0; i < int(n); i++ {
    		ev := &events[i]
    
    		if isWakeup(ev) {
    			if delay != 0 {
    				// netpollBreak could be picked up by a nonblocking poll.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/netpoll_aix.go

    			throw("poll failed")
    		}
    		unlock(&mtxset)
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if timeout > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	// Check if some descriptors need to be changed
    	if n != 0 && pfds[0].revents&(_POLLIN|_POLLHUP|_POLLERR) != 0 {
    		if delay != 0 {
    			// A netpollwakeup could be picked up by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter.go

    				filename, err = lookupGorootExport(bp.Dir)
    				if err == nil {
    					_, err = os.Stat(filename)
    				}
    				if err == nil {
    					return filename, bp.ImportPath, nil
    				}
    			}
    			goto notfound
    		} else {
    			noext = strings.TrimSuffix(bp.PkgObj, ".a")
    		}
    		id = bp.ImportPath
    
    	case build.IsLocalImport(path):
    		// "./x" -> "/this/directory/x.ext", "/this/directory/x"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/runtime/netpoll_wasip1.go

    			throw("poll_oneoff failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if delay > 0 {
    			unlock(&mtx)
    			return gList{}, 0
    		}
    		goto retry
    	}
    
    	var toRun gList
    	delta := int32(0)
    	for i := 0; i < int(nevents); i++ {
    		e := &evts[i]
    		if e.typ == eventtypeClock {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. src/image/jpeg/huffman.go

    			// be able to read the next symbol out of the previously read bits.
    			// First, undo the readByte that the ensureNBits call made.
    			if d.bytes.nUnreadable != 0 {
    				d.unreadByteStuffedByte()
    			}
    			goto slowPath
    		}
    	}
    	if v := h.lut[(d.bits.a>>uint32(d.bits.n-lutSize))&0xff]; v != 0 {
    		n := (v & 0xff) - 1
    		d.bits.n -= int32(n)
    		d.bits.m >>= n
    		return uint8(v >> 8), nil
    	}
    
    slowPath:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/lockosthread.go

    			println("locked thread reused")
    			os.Exit(1)
    		}
    		exists, supported, err := tidExists(subTID)
    		if err != nil {
    			println("error:", err.Error())
    			return
    		}
    		if !supported || !exists {
    			goto ok
    		}
    	}
    	println("sub thread", subTID, "still running")
    	return
    ok:
    	println("OK")
    }
    
    func LockOSThreadAvoidsStatePropagation() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/nodes.go

    		Op       Operator // 0 means no operation
    		Lhs, Rhs Expr     // Rhs == nil means Lhs++ (Op == Add) or Lhs-- (Op == Sub)
    		simpleStmt
    	}
    
    	BranchStmt struct {
    		Tok   token // Break, Continue, Fallthrough, or Goto
    		Label *Name
    		// Target is the continuation of the control flow after executing
    		// the branch; it is computed by the parser if CheckBranches is set.
    		// Target is a *LabeledStmt for gotos, and a *SwitchStmt, *SelectStmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top