Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 271 for goTo (1 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/prove.go

    		//		if ind < end
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		}
    		if a.Index == REG_TLS {
    			ctxt.Diag("unexpected TYPE_ADDR with index==REG_TLS")
    		}
    		goto bad
    
    	case obj.TYPE_REG:
    		const regFirst = REG_AL
    		const regLast = REG_Z31
    		if a.Reg < regFirst || regLast < a.Reg {
    			goto bad
    		}
    		if v != 0 {
    			goto bad
    		}
    		ab.Put1(byte(3<<6 | reg[a.Reg]<<0 | r<<3))
    		ab.rexflag |= regrex[a.Reg]&(0x40|Rxb) | rex
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. 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)
  5. cmd/iam-etcd-store.go

    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					if err := watchResp.Err(); err != nil {
    						iamLogIf(ctx, err)
    						// log and retry.
    						time.Sleep(1 * time.Second)
    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					for _, event := range watchResp.Events {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

              #expected_exception ".\n  Actual: it throws a different type."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
        if (!gtest_caught_expected) { \
          gtest_msg.value = \
              "Expected: " #statement " throws an exception of type " \
              #expected_exception ".\n  Actual: it throws nothing."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
      } else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. internal/grid/muxclient.go

    				}
    				m.respMu.Unlock()
    			case <-m.ctx.Done():
    				// Client canceled. Don't block.
    				// Next loop will catch it.
    			case <-pingTimer:
    				if !m.doPing(respHandler) {
    					return
    				}
    				goto sendResp
    			}
    		case <-pingTimer:
    			if !m.doPing(respHandler) {
    				return
    			}
    		}
    	}
    }
    
    // doPing checks last ping time and sends another ping.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. internal/logger/target/http/http.go

    				fmt.Errorf("unable to send webhook log entry to '%s' err '%w'", name, err),
    				name,
    			)
    
    			if errors.Is(err, context.Canceled) {
    				return
    			}
    
    			time.Sleep(3 * time.Second)
    			goto retry
    		}
    
    		entries = make([]interface{}, 0)
    
    		if !isDirQueue {
    			buf.Reset()
    		}
    
    		if !mainWorker && len(h.logCh) < cap(h.logCh)/2 {
    			if time.Since(h.lastStarted).Seconds() > 30 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top