Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 435 for goTo (0.07 sec)

  1. 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)
  2. 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)
  3. src/internal/trace/reader.go

    	//   (c) If there's nothing left to advance, goto (1).
    	// (6) Select the latest event for the selected M and get it ready to be returned.
    	// (7) Read the next event for the selected M and update the min-heap.
    	// (8) Return the selected event, goto (5) on the next call.
    
    	// Set us up to track the last timestamp and fix up
    	// the timestamp of any event that comes through.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint64(n) >= uint64(len(text)) {
    			// “Length” is really encoded full text, and they match.
    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    			for i := 0; i < n; i++ {
    				if this[i] != last[i] {
    					goto New
    				}
    			}
    			goto Same
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/syntax.go

    import (
    	"fmt"
    	"io"
    	"os"
    )
    
    // Mode describes the parser mode.
    type Mode uint
    
    // Modes supported by the parser.
    const (
    	CheckBranches Mode = 1 << iota // check correct use of labels, break, continue, and goto statements
    )
    
    // Error describes a syntax error. Error implements the error interface.
    type Error struct {
    	Pos Pos
    	Msg string
    }
    
    func (err Error) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  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/cmd/pack/pack.go

    		f, err := os.Open(file)
    		if err != nil {
    			log.Fatal(err)
    		}
    		aro, err := archive.Parse(f, false)
    		if err != nil || !isGoCompilerObjFile(aro) {
    			f.Seek(0, io.SeekStart)
    			ar.addFile(f)
    			goto close
    		}
    
    		for _, e := range aro.Entries {
    			if e.Type != archive.EntryGoObj || e.Name != "_go_.o" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/main/assemblies/files/fess.in.bat

    @echo off
    
    if DEFINED JAVA_HOME goto cont
    
    :err
    ECHO JAVA_HOME environment variable must be set! 1>&2
    EXIT /B 1 
    
    :cont
    set SCRIPT_DIR=%~dp0
    for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI
    
    
    REM ***** JAVA options *****
    
    if "%FESS_MIN_MEM%" == "" (
    set FESS_MIN_MEM=256m
    )
    
    if "%FESS_MAX_MEM%" == "" (
    set FESS_MAX_MEM=1g
    )
    
    if NOT "%FESS_HEAP_SIZE%" == "" (
    set FESS_MIN_MEM=%FESS_HEAP_SIZE%
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top