Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Processing (1.6 sec)

  1. src/cmd/asm/internal/lex/input.go

    func (in *Input) macroName() string {
    	// We use the Stack's input method; no macro processing at this stage.
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    		in.expectText("expected identifier after # directive")
    	}
    	// Name is alphanumeric by definition.
    	return in.Stack.Text()
    }
    
    // #define processing.
    func (in *Input) define() {
    	name := in.macroName()
    	args, tokens := in.macroDefinition(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/generate/generate.go

    	"cmd/go/internal/work"
    )
    
    var CmdGenerate = &base.Command{
    	Run:       runGenerate,
    	UsageLine: "go generate [-run regexp] [-n] [-v] [-x] [build flags] [file.go... | packages]",
    	Short:     "generate Go files by processing source",
    	Long: `
    Generate runs commands described by directives within existing
    files. Those commands can run any process but the intent is to
    create or update Go source files.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // manager. Then it generates a report formatted according to the
    // options selected through the flags package.
    func PProf(eo *plugin.Options) error {
    	// Remove any temporary files created during pprof processing.
    	defer cleanupTempFiles()
    
    	o := setDefaults(eo)
    
    	src, cmd, err := parseFlags(o)
    	if err != nil {
    		return err
    	}
    
    	p, err := fetchProfiles(src, o)
    	if err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/noder/noder.go

    	noders := make([]*noder, len(filenames))
    	for i := range noders {
    		p := noder{
    			err: make(chan syntax.Error),
    		}
    		noders[i] = &p
    	}
    
    	// Move the entire syntax processing logic into a separate goroutine to avoid blocking on the "sem".
    	go func() {
    		for i, filename := range filenames {
    			filename := filename
    			p := noders[i]
    			sem <- struct{}{}
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/html.go

    				}
    			}
    		}
    	}
    	return false
    }
    
    func parseHTMLTag(p *parseState, s string, i int) (Inline, int, bool) {
    	// “An HTML tag consists of an open tag, a closing tag, an HTML comment,
    	// a processing instruction, a declaration, or a CDATA section.”
    	if i+3 <= len(s) && s[i] == '<' {
    		switch s[i+1] {
    		default:
    			return parseHTMLOpenTag(p, s, i)
    		case '/':
    			return parseHTMLClosingTag(p, s, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    // variable. This enables extensions to set their own defaults.
    func SetVariableDefault(variable, value string) {
    	configure(variable, value)
    }
    
    // PostProcessor is a function that applies post-processing to the report output
    type PostProcessor func(input io.Reader, output io.Writer, ui plugin.UI) error
    
    // interactiveMode is true if pprof is running on interactive mode, reading
    // commands from its shell.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/initorder.go

    			fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
    			for p := range n.pred {
    				fmt.Printf("\t\t%s is dependent\n", p.obj.Name())
    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Processing nodes:")
    	}
    
    	// Determine initialization order by removing the highest priority node
    	// (the one with the fewest dependencies) and its edges from the graph,
    	// repeatedly, until there are no nodes left.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.go

    				// was already set to the number of bytes consumed.
    				if w.n == 0 {
    					n += m
    				}
    				w.n = m
    				err = nil
    			} else if nDst > 0 || nSrc > 0 {
    				// Not enough buffer to store the remainder. Keep processing as
    				// long as there is progress. Without this case, transforms that
    				// require a lookahead larger than the buffer may result in an
    				// error. This is not something one may expect to be common in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/testflag.go

    }
    
    // testFlags processes the command line, grabbing -x and -c, rewriting known flags
    // to have "test" before them, and reading the command line for the test binary.
    // Unfortunately for us, we need to do our own flag processing because go test
    // grabs some flags but otherwise its command line is just a holding place for
    // pkg.test's arguments.
    // We allow known flags both before and after the package name list,
    // to allow both
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    			// We depend on this check to keep the autotmp stack slots
    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if !used.Has(n) {
    				used.Add(n)
    				changed = true
    			}
    			return
    		case OpStore, OpMove, OpZero:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top