Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 435 for goTo (0.06 sec)

  1. src/internal/bytealg/compare_generic.go

    package bytealg
    
    import _ "unsafe" // for go:linkname
    
    func Compare(a, b []byte) int {
    	l := len(a)
    	if len(b) < l {
    		l = len(b)
    	}
    	if l == 0 || &a[0] == &b[0] {
    		goto samebytes
    	}
    	for i := 0; i < l; i++ {
    		c1, c2 := a[i], b[i]
    		if c1 < c2 {
    			return -1
    		}
    		if c1 > c2 {
    			return +1
    		}
    	}
    samebytes:
    	if len(a) < len(b) {
    		return -1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/internal/xcoff/file.go

    			if !ok {
    				goto skip
    			}
    		}
    		if sym.StorageClass != C_EXT && sym.StorageClass != C_WEAKEXT && sym.StorageClass != C_HIDEXT {
    			goto skip
    		}
    		// Must have at least one csect auxiliary entry.
    		if numaux < 1 || i+numaux >= int(nsyms) {
    			goto skip
    		}
    
    		if sym.SectionNumber > int(nscns) {
    			goto skip
    		}
    		if sym.SectionNumber == 0 {
    			sym.Value = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/math/gamma.go

    	}
    
    	// Reduce argument
    	z := 1.0
    	for x >= 3 {
    		x = x - 1
    		z = z * x
    	}
    	for x < 0 {
    		if x > -1e-09 {
    			goto small
    		}
    		z = z / x
    		x = x + 1
    	}
    	for x < 2 {
    		if x < 1e-09 {
    			goto small
    		}
    		z = z / x
    		x = x + 1
    	}
    
    	if x == 2 {
    		return z
    	}
    
    	x = x - 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/html.go

    			break
    		}
    		buf = append(buf, c)
    	}
    	var sep byte
    	if i < len(t) {
    		switch t[i] {
    		default:
    			goto Next
    		case ' ', '\t', '>':
    			// ok
    			sep = t[i]
    		case '/':
    			if i+1 >= len(t) || t[i+1] != '>' {
    				goto Next
    			}
    		}
    	}
    
    	if len(buf) == 0 {
    		goto Next
    	}
    	{
    		c := buf[0]
    		var ok bool
    		for _, name := range htmlTags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    			// rules in the "filter" table rejecting incoming packets for
    			// the service's IPs.
    			internalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    			externalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    		} else {
    			if !hasInternalEndpoints {
    				// The internalTrafficPolicy is "Local" but there are no local
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    					copy(i.buf[outp:], d)
    					return i.buf[:p]
    				}
    				return d
    			}
    			copy(i.buf[outp:], d)
    			outp = p
    			inCopyStart, outCopyStart = i.p, outp
    			if i.info.ccc < prevCC {
    				goto doNorm
    			}
    			continue
    		} else if r := i.rb.src.hangul(i.p); r != 0 {
    			outp = decomposeHangul(i.buf[:], r)
    			i.p += hangulUTF8Size
    			inCopyStart, outCopyStart = i.p, outp
    			if i.p >= i.rb.nsrc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/groovy-hl.xml

            <keyword>enum</keyword>
            <keyword>extends</keyword>
            <keyword>false</keyword>
            <keyword>final</keyword>
            <keyword>finally</keyword>
            <keyword>for</keyword>
            <keyword>goto</keyword>
            <keyword>if</keyword>
            <keyword>implements</keyword>
            <keyword>import</keyword>
            <keyword>in</keyword>
            <keyword>instanceof</keyword>
            <keyword>interface</keyword>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/java-hl.xml

            <keyword>else</keyword>
            <keyword>extends</keyword>
            <keyword>final</keyword>
            <keyword>finally</keyword>
            <keyword>float</keyword>
            <keyword>for</keyword>
            <keyword>goto</keyword>
            <keyword>if</keyword>
            <keyword>implements</keyword>
            <keyword>import</keyword>
            <keyword>instanceof</keyword>
            <keyword>int</keyword>
            <keyword>interface</keyword>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/str/str.go

    func ToFold(s string) string {
    	// Fast path: all ASCII, no upper case.
    	// Most paths look like this already.
    	for i := 0; i < len(s); i++ {
    		c := s[i]
    		if c >= utf8.RuneSelf || 'A' <= c && c <= 'Z' {
    			goto Slow
    		}
    	}
    	return s
    
    Slow:
    	var b strings.Builder
    	for _, r := range s {
    		// SimpleFold(x) cycles to the next equivalent rune > x
    		// or wraps around to smaller values. Iterate until it wraps,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopbce.go

    //
    // Look for variables and blocks that satisfy the following
    //
    //	 loop:
    //	   ind = (Phi min nxt),
    //	   if ind < max
    //	     then goto enter_loop
    //	     else goto exit_loop
    //
    //	   enter_loop:
    //		do something
    //	      nxt = inc + ind
    //		goto loop
    //
    //	 exit_loop:
    func findIndVar(f *Func) []indVar {
    	var iv []indVar
    	sdom := f.Sdom()
    
    	for _, b := range f.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top