Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 186 for goTo (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/config/model.go

    package config
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"reflect"
    	"time"
    
    	gogojsonpb "github.com/gogo/protobuf/jsonpb" // nolint: depguard
    	gogoproto "github.com/gogo/protobuf/proto"   // nolint: depguard
    	gogotypes "github.com/gogo/protobuf/types"   // nolint: depguard
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/reflect/protoreflect"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. hack/unwanted-dependencies.json

          "github.com/go-openapi/validate": "use k8s.io/kube-openapi/pkg/validation/validate instead",
          "github.com/gogo/googleapis": "depends on unmaintained github.com/gogo/protobuf",
          "github.com/gogo/protobuf": "unmaintained",
          "github.com/golang/mock": "unmaintained, archive mode",
          "github.com/google/gofuzz": "unmaintained, archive mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    gob.gt gob.hn gob.mx gob.ni gob.pa gob.pe gob.pk gob.sv gob.ve gobo.wakayama.jp godaddy godo.gifu.jp goiania.br goip.de gojome.akita.jp gok.pk gokase.miyazaki.jp gol.no gold goldpoint golf golffan.us gon.pk gonna.jp gonohe.aomori.jp goo goodyear goog google googleapis.com googlecode.com gop gop.pk gorge.museum gorizia.it gorlice.pl gos.pk gose.nara.jp gosen.niigata.jp goshiki.hyogo.jp got gotdns.ch gotdns.com gotdns.org gotemba.shizuoka.jp goto.nagasaki.jp gotpantheon.com gotsu.shimane.jp goupile.fr gouv.ci...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top