Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 197 for goTo (0.04 sec)

  1. src/cmd/compile/internal/ssa/dom_test.go

    			Goto("b28")),
    		Bloc("b29",
    			Goto("b31")),
    		Bloc("b31",
    			Goto("b28")),
    		Bloc("b28",
    			If("p", "b32", "b33")),
    		Bloc("b32",
    			Goto("b21")),
    		Bloc("b21",
    			Goto("b47")),
    		Bloc("b47",
    			If("p", "b45", "b46")),
    		Bloc("b45",
    			Goto("b48")),
    		Bloc("b48",
    			Goto("b49")),
    		Bloc("b49",
    			If("p", "b50", "b51")),
    		Bloc("b50",
    			Goto("b52")),
    		Bloc("b52",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. test/escape2.go

    	goto L30
    	goto L31
    	goto L32
    	goto L33
    	goto L34
    	goto L35
    	goto L36
    	goto L37
    	goto L38
    	goto L39
    	goto L40
    	goto L41
    	goto L42
    	goto L43
    	goto L44
    	goto L45
    	goto L46
    	goto L47
    	goto L48
    	goto L49
    	goto L50
    	goto L51
    	goto L52
    	goto L53
    	goto L54
    	goto L55
    	goto L56
    	goto L57
    	goto L58
    	goto L59
    	goto L60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. test/escape2n.go

    	goto L30
    	goto L31
    	goto L32
    	goto L33
    	goto L34
    	goto L35
    	goto L36
    	goto L37
    	goto L38
    	goto L39
    	goto L40
    	goto L41
    	goto L42
    	goto L43
    	goto L44
    	goto L45
    	goto L46
    	goto L47
    	goto L48
    	goto L49
    	goto L50
    	goto L51
    	goto L52
    	goto L53
    	goto L54
    	goto L55
    	goto L56
    	goto L57
    	goto L58
    	goto L59
    	goto L60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    		if err1 != 0 {
    			goto childerror
    		}
    		if pid != unsafe.Sizeof(err2) {
    			err1 = EINVAL
    			goto childerror
    		}
    		if err2 != 0 {
    			err1 = err2
    			goto childerror
    		}
    	}
    
    	// Session ID
    	if sys.Setsid {
    		_, _, err1 = RawSyscall(SYS_SETSID, 0, 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Set process group
    	if sys.Setpgid || sys.Foreground {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Goto(blockn(0)),
    		),
    	)
    	for i := 0; i < depth; i++ {
    		blocs = append(blocs,
    			Bloc(blockn(i),
    				Valu(ptrn(i), OpAddr, ptrType, 0, nil, "sb"),
    				Valu(booln(i), OpIsNonNil, c.config.Types.Bool, 0, nil, ptrn(i)),
    				If(booln(i), blockn(i+1), "exit"),
    			),
    		)
    	}
    	blocs = append(blocs,
    		Bloc(blockn(depth), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. test/return.go

    func _() int {
    } // ERROR "missing return"
    
    func _() int {
    	print(1)
    } // ERROR "missing return"
    
    // return is okay
    func _() int {
    	print(1)
    	return 2
    }
    
    // goto is okay
    func _() int {
    L:
    	print(1)
    	goto L
    }
    
    // panic is okay
    func _() int {
    	print(1)
    	panic(2)
    }
    
    // but only builtin panic
    func _() int {
    	var panic = func(int) {}
    	print(1)
    	panic(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 32.7K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    	add element ip testing service-ips { 172.30.0.42 . tcp . 80 : goto service-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-ips { 192.168.99.22 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-ips { 1.2.3.4 . tcp . 80 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    	add element ip testing service-nodeports { tcp . 3001 : goto external-42NFTM6N-ns2/svc2/tcp/p80 }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/net/error_test.go

    			return err
    		}
    		nestedErr = err.Err
    		goto second
    	}
    	return fmt.Errorf("unexpected type on 1st nested level: %T", nestedErr)
    
    second:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	switch err := nestedErr.(type) {
    	case *os.SyscallError:
    		nestedErr = err.Err
    		goto third
    	case *fs.PathError: // for Plan 9
    		nestedErr = err.Err
    		goto third
    	}
    	switch nestedErr {
    	case ErrClosed:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. src/math/big/arith_s390x.s

    	ADD   $128, R10           // i += 16
    	SUB   $16, R3             // n -= 16
    	BGE   UU1                 // if n >= 0 goto U1
    	VLGVG $1, V0, R4          // put cf into R4
    	NEG   R4, R4              // save cf
    
    A1:
    	ADD $12, R3 // n += 16
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	BLT v1 // if n < 0 goto v1
    
    U1:  // n >= 0
    	// regular loop body unrolled 4x
    	MOVD 0(R8)(R10*1), R5
    	MOVD 8(R8)(R10*1), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. src/runtime/select.go

    			sg = c.sendq.dequeue()
    			if sg != nil {
    				goto recv
    			}
    			if c.qcount > 0 {
    				goto bufrecv
    			}
    			if c.closed != 0 {
    				goto rclose
    			}
    		} else {
    			if raceenabled {
    				racereadpc(c.raceaddr(), casePC(casi), chansendpc)
    			}
    			if c.closed != 0 {
    				goto sclose
    			}
    			sg = c.recvq.dequeue()
    			if sg != nil {
    				goto send
    			}
    			if c.qcount < c.dataqsiz {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top