Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Epost (0.03 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		}
    	}
    	if remote {
    		post := func(source, post string) ([]byte, error) {
    			return postURL(source, post, s.Transport)
    		}
    		if err = symbolzSymbolize(p, force, sources, post, s.UI); err != nil {
    			return err // Ran out of options.
    		}
    	}
    
    	demangleFunction(p, force, demanglerMode)
    	return nil
    }
    
    // postURL issues a POST to a URL over HTTP.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		}
    	}
    
    	// Assign suffix comments to syntax immediately before.
    	for i := len(in.post) - 1; i >= 0; i-- {
    		x := in.post[i]
    
    		start, end := x.Span()
    		if debug {
    			fmt.Fprintf(os.Stderr, "post %T :%d:%d #%d :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte, end.Line, end.LineRune, end.Byte)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    // specialized visualization formats. If the command specified already
    // exists, it is overwritten.
    func AddCommand(cmd string, format int, post PostProcessor, desc, usage string) {
    	pprofCommands[cmd] = &command{format, post, nil, false, desc, usage}
    }
    
    // SetVariableDefault sets the default value for a pprof
    // variable. This enables extensions to set their own defaults.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		err = printWebList(dst, rpt, o.Obj)
    	default:
    		err = report.Generate(dst, rpt, o.Obj)
    	}
    	if err != nil {
    		return err
    	}
    	src := dst
    
    	// If necessary, perform any data post-processing.
    	if c.postProcess != nil {
    		dst = new(bytes.Buffer)
    		if err := c.postProcess(src, dst, o.UI); err != nil {
    			return err
    		}
    		src = dst
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/mvs.go

    			}
    		}
    		postorder = append(postorder, m)
    		return nil
    	}
    	for _, m := range list {
    		if err := walk(m); err != nil {
    			return nil, err
    		}
    	}
    
    	// Walk modules in reverse post-order, only adding those not implied already.
    	have := map[module.Version]bool{}
    	walk = func(m module.Version) error {
    		if have[m] {
    			return nil
    		}
    		have[m] = true
    		for _, m1 := range reqCache[m] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    		}
    		return fmt.Sprintf("[%s,%s]", R, X)
    	case AddrPreIndex:
    		return fmt.Sprintf("[%s,%s]!", R, X)
    	case AddrPostIndex:
    		return fmt.Sprintf("[%s],%s", R, X)
    	case AddrPostReg:
    		post := Reg(X0) + Reg(m.imm)
    		postR := post.String()
    		return fmt.Sprintf("[%s], %s", R, postR)
    	}
    	return fmt.Sprintf("unimplemented!")
    }
    
    // A MemExtend is a memory reference made up of a base R and index expression X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/fmt.go

    			fmt.Fprint(s, " /* distinct */")
    		}
    		if simpleinit {
    			fmt.Fprintf(s, " %v;", n.Init()[0])
    		} else if n.Post != nil {
    			fmt.Fprint(s, " ;")
    		}
    
    		if n.Cond != nil {
    			fmt.Fprintf(s, " %v", n.Cond)
    		}
    
    		if n.Post != nil {
    			fmt.Fprintf(s, "; %v", n.Post)
    		} else if simpleinit {
    			fmt.Fprint(s, ";")
    		}
    
    		fmt.Fprintf(s, " { %v }", n.Body)
    
    	case ORANGE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    	n.Cond = DefaultLit(n.Cond, nil)
    	if n.Cond != nil {
    		t := n.Cond.Type()
    		if t != nil && !t.IsBoolean() {
    			base.Errorf("non-bool %L used as for condition", n.Cond)
    		}
    	}
    	n.Post = Stmt(n.Post)
    	Stmts(n.Body)
    	return n
    }
    
    // tcGoDefer typechecks (normalizes) an OGO/ODEFER statement.
    func tcGoDefer(n *ir.GoDeferStmt) {
    	call := normalizeGoDeferCall(n.Pos(), n.Op(), n.Call, n.PtrInit())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    			}
    			...
    			return true
    		})
    	    if #state1 == abi.RF_PANIC {
    	       	panic(runtime.panicrangestate(abi.RF_MISSING_PANIC))
    	    }
    		#state1 = abi.RF_EXHAUSTED
    	}
    
    Note that the post-h checks only consider a break,
    since no generated code tries to continue g.
    
    # Gotos and other labeled break/continue
    
    The final control flow translations are goto and break/continue of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/ast.go

    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.SelectStmt:
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.ForStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(&n.Cond, ctxExpr, visit)
    		f.walk(n.Post, ctxStmt, visit)
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.RangeStmt:
    		f.walk(&n.Key, ctxExpr, visit)
    		f.walk(&n.Value, ctxExpr, visit)
    		f.walk(&n.X, ctxExpr, visit)
    		f.walk(n.Body, ctxStmt, visit)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top