Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 197 for goTo (0.04 sec)

  1. 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)
  2. src/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: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/compress/flate/inflate.go

    func (f *decompressor) huffmanBlock() {
    	const (
    		stateInit = iota // Zero value must be stateInit
    		stateDict
    	)
    
    	switch f.stepState {
    	case stateInit:
    		goto readLiteral
    	case stateDict:
    		goto copyHistory
    	}
    
    readLiteral:
    	// Read literal and/or (length, distance) according to RFC section 3.2.3.
    	{
    		v, err := f.huffSym(f.hl)
    		if err != nil {
    			f.err = err
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/users/users_linux.go

    				// Found matching group GID for user GID
    				if g.name != uc.name {
    					return nil, nil, errors.Errorf("user %q has GID %d but the group with that GID is not named %q",
    						uc.name, g.id, uc.name)
    				}
    				goto skipUser // Valid group GID and name; skip
    			}
    			return nil, nil, errors.Errorf("could not find group with GID %d for user %q", user.gid, user.name)
    		}
    		u = append(u, uc)
    	skipUser:
    	}
    	// validate groups
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

    import static org.objectweb.asm.Opcodes.DUP;
    import static org.objectweb.asm.Opcodes.F_SAME;
    import static org.objectweb.asm.Opcodes.GETFIELD;
    import static org.objectweb.asm.Opcodes.GETSTATIC;
    import static org.objectweb.asm.Opcodes.GOTO;
    import static org.objectweb.asm.Opcodes.ICONST_0;
    import static org.objectweb.asm.Opcodes.ICONST_1;
    import static org.objectweb.asm.Opcodes.IFEQ;
    import static org.objectweb.asm.Opcodes.IFNONNULL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/patches/patches.go

    	// Check if targetPath is a directory.
    	info, err := os.Lstat(targetPath)
    	if err != nil {
    		goto return_path_error
    	}
    	if !info.IsDir() {
    		err = &os.PathError{
    			Op:   "getPatchSetsFromPath",
    			Path: info.Name(),
    			Err:  errors.New("not a directory"),
    		}
    		goto return_path_error
    	}
    
    	err = filepath.Walk(targetPath, func(path string, info os.FileInfo, err error) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/runtime/mfinal.go

    	switch {
    	case fint == etyp:
    		// ok - same type
    		goto okarg
    	case fint.Kind_&abi.KindMask == abi.Pointer:
    		if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
    			// ok - not same type, but both pointers,
    			// one or the other is unnamed, and same element type, so assignable.
    			goto okarg
    		}
    	case fint.Kind_&abi.KindMask == abi.Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/go/scanner/scanner.go

    		next = s.offset
    		if s.ch == '\n' {
    			next++
    		}
    		goto exit
    	}
    
    	/*-style comment */
    	s.next()
    	for s.ch >= 0 {
    		ch := s.ch
    		if ch == '\r' {
    			numCR++
    		} else if ch == '\n' && nlOffset == 0 {
    			nlOffset = s.offset
    		}
    		s.next()
    		if ch == '*' && s.ch == '/' {
    			s.next()
    			next = s.offset
    			goto exit
    		}
    	}
    
    	s.error(offs, "comment not terminated")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top