Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 505 for goTo (0.06 sec)

  1. src/runtime/os3_plan9.go

    		print("sighandler: ureg ", _ureg, " note ", note, "\n")
    		goto Throw
    	}
    	// Check that the note is no more than ERRMAX bytes (including
    	// the trailing NUL). We should never receive a longer note.
    	if len(notestr) > _ERRMAX-1 {
    		print("sighandler: note is longer than ERRMAX\n")
    		goto Throw
    	}
    	if isAbortPC(c.pc()) {
    		// Never turn abort into a panic.
    		goto Throw
    	}
    	// See if the note matches one of the patterns in sigtab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner.go

    		s.op, s.prec = Add, precAdd
    		if s.ch != '+' {
    			goto assignop
    		}
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _IncOp
    
    	case '-':
    		s.nextch()
    		s.op, s.prec = Sub, precAdd
    		if s.ch != '-' {
    			goto assignop
    		}
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _IncOp
    
    	case '*':
    		s.nextch()
    		s.op, s.prec = Mul, precMul
    		// don't goto assignop - want _Star token
    		if s.ch == '=' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. src/syscall/exec_plan9.go

    	dupdevfd = int(r1)
    	if dupdevfd == -1 {
    		goto childerror
    	}
    dirloop:
    	for {
    		r1, _, _ = RawSyscall6(SYS_PREAD, uintptr(dupdevfd), uintptr(unsafe.Pointer(&statbuf[0])), uintptr(len(statbuf)), ^uintptr(0), ^uintptr(0), 0)
    		n = int(r1)
    		switch n {
    		case -1:
    			goto childerror
    		case 0:
    			break dirloop
    		}
    		for b = statbuf[:n]; len(b) > 0; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    		add element ip kube-proxy service-ips { 172.30.0.42 . tcp . 80 : goto service-42NFTM6N-ns2/svc2/tcp/p80 }
    		add element ip kube-proxy service-ips { 192.168.99.22 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    		add element ip kube-proxy service-ips { 1.2.3.4 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    		add element ip kube-proxy service-nodeports { tcp . 3001 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			goto Error
    		}
    		if isTypeParam(x.typ) {
    			check.errorf(x, InvalidAssert, invalidOp+"cannot use type assertion on type parameter value %s", x)
    			goto Error
    		}
    		if _, ok := under(x.typ).(*Interface); !ok {
    			check.errorf(x, InvalidAssert, invalidOp+"%s is not an interface", x)
    			goto Error
    		}
    		T := check.varType(e.Type)
    		if !isValid(T) {
    			goto Error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    				// know after seeing the 2nd operand whether we have
    				// an invalid comparison.
    				errOp = y
    				goto Error
    			}
    
    		case !Comparable(x.typ):
    			errOp = x
    			cause = check.incomparableCause(x.typ)
    			goto Error
    
    		case !Comparable(y.typ):
    			errOp = y
    			cause = check.incomparableCause(y.typ)
    			goto Error
    		}
    
    	case token.LSS, token.LEQ, token.GTR, token.GEQ:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore_test.go

    			Valu("store3", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr1", "v", "store2"),
    			Valu("store4", OpStore, types.TypeMem, 0, c.config.Types.Bool, "addr3", "v", "store3"),
    			Goto("exit")),
    		Bloc("exit",
    			Exit("store3")))
    
    	CheckFunc(fun.f)
    	dse(fun.f)
    	CheckFunc(fun.f)
    
    	v1 := fun.values["store1"]
    	if v1.Op != OpCopy {
    		t.Errorf("dead store not removed")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/debug/dwarf/type.go

    		enc, ok := e.Val(AttrEncoding).(int64)
    		if !ok {
    			err = DecodeError{name, e.Offset, "missing encoding attribute for " + name}
    			goto Error
    		}
    		switch enc {
    		default:
    			err = DecodeError{name, e.Offset, "unrecognized encoding attribute value"}
    			goto Error
    
    		case encAddress:
    			typ = new(AddrType)
    		case encBoolean:
    			typ = new(BoolType)
    		case encComplexFloat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/passbm_test.go

    				valn("v", i, 0), valn("store", i, 2)),
    			Valu(valn("store", i, 4), OpStore, types.TypeMem, 0, elemType, valn("addr", i, 3),
    				valn("v", i, 0), valn("store", i, 3)),
    			Goto(blockn(i+1))))
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size+1), Goto("exit")),
    		Bloc("exit", Exit("store0-4")),
    	)
    
    	return blocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("cmp", OpLess64, c.config.Types.Bool, 0, nil, "v1", "v2"),
    			If("cmp", "b2", "b3")),
    		Bloc("b2",
    			Valu("v3", OpConst64, c.config.Types.Int64, 3, nil),
    			Goto("b4")),
    		Bloc("b3",
    			Valu("v4", OpConst64, c.config.Types.Int64, 4, nil),
    			Goto("b4")),
    		Bloc("b4",
    			Valu("merge", OpPhi, c.config.Types.Int64, 0, nil, "v3", "v4"),
    			Exit("mem")))
    	sccp(fun.f)
    	CheckFunc(fun.f)
    	for _, b := range fun.blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top