Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Epost (0.25 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/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)
  3. 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)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // See issue 55122 for details.
    //
    // Because expand calls runs after prove, constants useful to this pattern may not appear.
    // Both versions need to exist; the memory and register variants.
    //
    // Match post-expansion calls, memory version.
    (SelectN [0] call:(StaticCall {sym} s1:(Store _ (Const(64|32) [sz]) s2:(Store  _ src s3:(Store {t} _ dst mem)))))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    func (p *Package) UsesCgo() bool {
    	return len(p.CgoFiles) > 0
    }
    
    // PackageList returns the list of packages in the dag rooted at roots
    // as visited in a depth-first post-order traversal.
    func PackageList(roots []*Package) []*Package {
    	seen := map[*Package]bool{}
    	all := []*Package{}
    	var walk func(*Package)
    	walk = func(p *Package) {
    		if seen[p] {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	OFILL                                       = 0x40
    	ONLRET                                      = 0x20
    	ONOCR                                       = 0x10
    	OPENPROM_SUPER_MAGIC                        = 0x9fa1
    	OPOST                                       = 0x1
    	OVERLAYFS_SUPER_MAGIC                       = 0x794c7630
    	O_ACCMODE                                   = 0x3
    	O_RDONLY                                    = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	{AFMOVS, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    	{AFMOVD, C_FREG, C_NONE, C_NONE, C_ROFF, C_NONE, 99, 4, 0, 0, 0},
    
    	/* pre/post-indexed/signed-offset load/store register pair
    	   (unscaled, signed 10-bit quad-aligned and long offset).
    	The pre/post-indexed format only supports OREG cases because
    	the RSP and pseudo registers are not allowed to be modified
    	in this way. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    <p>
    A "for" statement with a ForClause is also controlled by its condition, but
    additionally it may specify an <i>init</i>
    and a <i>post</i> statement, such as an assignment,
    an increment or decrement statement. The init statement may be a
    <a href="#Short_variable_declarations">short variable declaration</a>, but the post statement must not.
    </p>
    
    <pre class="ebnf">
    ForClause = [ InitStmt ] ";" [ Condition ] ";" [ PostStmt ] .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	&& isSameCall(sym, "runtime.memmove")
    	&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
    	&& isInlinableMemmove(dst, src, sz, config)
    	&& clobber(s1, s2, s3, call)
    	=> (Move [sz] dst src mem)
    
    // Match post-lowering calls, register version.
    (SelectN [0] call:(CALLstatic {sym} dst src (MOVDconst [sz]) mem))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    	&& call.Uses == 1
    	&& isInlinableMemmove(dst, src, sz, config)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // union of all imports from both GoFiles and CompiledGoFiles.
    //
    // The -deps flag causes list to iterate over not just the named packages
    // but also all their dependencies. It visits them in a depth-first post-order
    // traversal, so that a package is listed only after all its dependencies.
    // Packages not explicitly listed on the command line will have the DepOnly
    // field set to true.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top