Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for goTo (0.1 sec)

  1. 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)
  2. 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)
  3. src/runtime/proc.go

    		unlock(&sched.lock)
    		goto top
    	}
    	if sched.runqsize != 0 {
    		gp := globrunqget(pp, 0)
    		unlock(&sched.lock)
    		return gp, false, false
    	}
    	if !mp.spinning && sched.needspinning.Load() == 1 {
    		// See "Delicate dance" comment below.
    		mp.becomeSpinning()
    		unlock(&sched.lock)
    		goto top
    	}
    	if releasep() != pp {
    		throw("findrunnable: wrong p")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    			// the same directory, it's likely an error (see below).
    			goto omitVCS
    		}
    		if cfg.BuildBuildvcs == "auto" && vcsCmd != nil && vcsCmd.Cmd != "" {
    			if _, err := cfg.LookPath(vcsCmd.Cmd); err != nil {
    				// We fould a repository, but the required VCS tool is not present.
    				// "-buildvcs=auto" means that we should silently drop the VCS metadata.
    				goto omitVCS
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    		}
    	}
    </pre>
    
    <h3 id="Goto_statements">Goto statements</h3>
    
    <p>
    A "goto" statement transfers control to the statement with the corresponding label
    within the same function.
    </p>
    
    <pre class="ebnf">
    GotoStmt = "goto" Label .
    </pre>
    
    <pre>
    goto Error
    </pre>
    
    <p>
    Executing the "goto" statement must not cause any variables to come into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    			o1 = c.oaddi12(p, v, REGTMP, int16(r))
    			o2 = c.olsr12u(p, c.opstr(p, p.As), 0, REGTMP, p.From.Reg)
    			break
    		}
    
    		hi, lo, err := splitImm24uScaled(v, s)
    		if err != nil {
    			goto storeusepool
    		}
    		if p.Pool != nil {
    			c.ctxt.Diag("%v: unused constant in pool (%v)\n", p, v)
    		}
    		o1 = c.oaddi(p, AADD, hi, REGTMP, r)
    		o2 = c.olsr12u(p, c.opstr(p, p.As), lo, REGTMP, p.From.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	if err == nil && len(data) > len(id) {
    		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    			rinfo.ReplicationStatus = replication.Completed
    			rinfo.ReplicationAction = replicateNone
    			goto applyAction
    		}
    		// if target returns error other than NoSuchKey, defer replication attempt
    		if minio.IsNetworkOrHostDown(cerr, true) && !globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    				c.script[0] = cue - remaining
    				time.Sleep(remaining)
    				return 0, syscall.ETIMEDOUT
    			}
    		}
    		c.script = c.script[1:]
    		time.Sleep(cue)
    		goto restart
    
    	case string:
    		n = copy(b, cue)
    		// If cue is too big for the buffer, leave the end for the next Read.
    		if len(cue) > n {
    			c.script[0] = cue[n:]
    		} else {
    			c.script = c.script[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    godaddy
    
    // gold : 2015-01-22 Binky Moon, LLC
    gold
    
    // goldpoint : 2014-11-20 YODOBASHI CAMERA CO.,LTD.
    goldpoint
    
    // golf : 2014-12-18 Binky Moon, LLC
    golf
    
    // goo : 2014-12-18 NTT Resonant Inc.
    goo
    
    // goodyear : 2015-07-02 The Goodyear Tire & Rubber Company
    goodyear
    
    // goog : 2014-11-20 Charleston Road Registry Inc.
    goog
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top