Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for ahead (0.06 sec)

  1. src/go/printer/testdata/parser.go

    	comments    []*ast.CommentGroup
    	leadComment *ast.CommentGroup // last lead comment
    	lineComment *ast.CommentGroup // last line comment
    
    	// Next token
    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Non-syntactic parser control
    	exprLev int // < 0: in control clause, >= 0: in expression
    
    	// Ordinary identifier scopes
    	pkgScope   *ast.Scope        // pkgScope.Outer == nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. src/go/parser/parser.go

    	goVersion   string            // minimum Go version found in //go:build comment
    
    	// Next token
    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Error recovery
    	// (used to limit the number of calls to parser.advance
    	// w/o making scanning progress - avoids potential endless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		}
    		v.Block.Func.RegArgs = nil
    
    		ssagen.CheckArgReg(v)
    
    	case ssa.OpPPC64DIVD:
    		// For now,
    		//
    		// cmp arg1, -1
    		// be  ahead
    		// v = arg0 / arg1
    		// b over
    		// ahead: v = - arg0
    		// over: nop
    		r := v.Reg()
    		r0 := v.Args[0].Reg()
    		r1 := v.Args[1].Reg()
    
    		p := s.Prog(ppc64.ACMP)
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	//
    	// 4. Wait for mark termination N+1 to complete.
    	//
    	// 5. Help with sweep N+1 until it's done.
    	//
    	// This all has to be written to deal with the fact that the
    	// GC may move ahead on its own. For example, when we block
    	// until mark termination N, we may wake up in cycle N+2.
    
    	// Wait until the current sweep termination, mark, and mark
    	// termination complete.
    	n := work.cycles.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	pkg.mod, modroot, pkg.dir, pkg.altMods, pkg.err = importFromModules(ctx, pkg.path, ld.requirements, mg, ld.skipImportModFiles)
    	if pkg.dir == "" {
    		return
    	}
    	if MainModules.Contains(pkg.mod.Path) {
    		// Go ahead and mark pkg as in "all". This provides the invariant that a
    		// package that is *only* imported by other packages in "all" is always
    		// marked as such before loading its imports.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    			xremove(exe + ".exe")
    		case !d.IsDir() && strings.HasPrefix(d.Name(), "z"):
    			// Remove generated file, identified by marker string.
    			head := make([]byte, 512)
    			if f, err := os.Open(path); err == nil {
    				io.ReadFull(f, head)
    				f.Close()
    			}
    			if bytes.HasPrefix(head, generated) {
    				xremove(path)
    			}
    		}
    		return nil
    	})
    
    	if rebuildall {
    		// Remove object tree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. cmd/xl-storage_test.go

    			[]byte("world"), nil,
    		},
    		// Reading from an object but buffer size greater. - 8
    		{
    			volume, "myobject",
    			7, 8,
    			[]byte("world"),
    			io.ErrUnexpectedEOF,
    		},
    		// Seeking ahead returns io.EOF. - 9
    		{
    			volume, "myobject", 14, 1, nil, io.EOF,
    		},
    		// Empty volume name. - 10
    		{
    			"", "myobject", 14, 1, nil, errVolumeNotFound,
    		},
    		// Empty filename name. - 11
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    		// if both the current and last generation were not dense.
    		return sc.inUse < scavChunkHiOccPages && sc.lastInUse < scavChunkHiOccPages
    	}
    	// If we're one or more generations ahead, we know inUse represents the current
    	// state of the chunk, since otherwise it would've been updated already.
    	return sc.inUse < scavChunkHiOccPages
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top