Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for browser (0.14 sec)

  1. src/cmd/pprof/readlineui.go

    // interactive terminal (as opposed to being redirected to a file).
    func (r *readlineUI) IsTerminal() bool {
    	const stdout = 1
    	return term.IsTerminal(stdout)
    }
    
    // WantBrowser indicates whether browser should be opened with the -http option.
    func (r *readlineUI) WantBrowser() bool {
    	return r.IsTerminal()
    }
    
    // SetAutoComplete instructs the UI to call complete(cmd) to obtain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/bug/bug.go

    	"cmd/go/internal/web"
    	"cmd/go/internal/work"
    )
    
    var CmdBug = &base.Command{
    	Run:       runBug,
    	UsageLine: "go bug",
    	Short:     "start a bug report",
    	Long: `
    Bug opens the default browser and starts a new bug report.
    The report includes useful system information.
    	`,
    }
    
    func init() {
    	CmdBug.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	base.AddChdirFlag(&CmdBug.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/html/template/css.go

    	//     escapes. For example, a malformed declaration may be missing a
    	//     property, colon (:) or value.
    	// So we need to make sure that values do not have mismatched bracket
    	// or quote characters to prevent the browser from restarting parsing
    	// inside a string that might embed JavaScript source.
    	for i, c := range b {
    		switch c {
    		case 0, '"', '\'', '(', ')', '/', ';', '@', '[', '\\', ']', '`', '{', '}', '<', '>':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. src/html/template/doc.go

    parameter is not, and seeks to preserve the properties below in the face
    of untrusted data:
    
    Structure Preservation Property:
    "... when a template author writes an HTML tag in a safe templating language,
    the browser will interpret the corresponding portion of the output as a tag
    regardless of the values of untrusted data, and similarly for other structures
    such as attribute boundaries and JS and CSS string boundaries."
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    		}
    		buf.WriteByte('\n')
    	}
    	return buf.String()
    }
    
    // Dot returns the control-flow graph in the [Dot graph description language].
    // Use a command such as 'dot -Tsvg' to render it in a form viewable in a browser.
    // This method is provided as a debugging aid; the details of the
    // output are unspecified and may change.
    //
    // [Dot graph description language]: ​​https://en.wikipedia.org/wiki/DOT_(graph_description_language)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/api.go

    func Get(security SecurityMode, u *url.URL) (*Response, error) {
    	return get(security, u)
    }
    
    // OpenBrowser attempts to open the requested URL in a web browser.
    func OpenBrowser(url string) (opened bool) {
    	return openBrowser(url)
    }
    
    // Join returns the result of adding the slash-separated
    // path elements to the end of u's path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	PrintErr(...interface{})
    
    	// IsTerminal returns whether the UI is known to be tied to an
    	// interactive terminal (as opposed to being redirected to a file).
    	IsTerminal() bool
    
    	// WantBrowser indicates whether browser should be opened with the -http option.
    	WantBrowser() bool
    
    	// SetAutoComplete instructs the UI to call complete(cmd) to obtain
    	// the auto-completion of cmd, if the UI supports auto-completion at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	PrintErr(...interface{})
    
    	// IsTerminal returns whether the UI is known to be tied to an
    	// interactive terminal (as opposed to being redirected to a file).
    	IsTerminal() bool
    
    	// WantBrowser indicates whether a browser should be opened with the -http option.
    	WantBrowser() bool
    
    	// SetAutoComplete instructs the UI to call complete(cmd) to obtain
    	// the auto-completion of cmd, if the UI supports auto-completion at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/pprof/README

    What we test is that the "go tool pprof" shipped with each Go release works
    with programs from that release.
    
    2. Pprof is used inside Google for C++, Java, and Go programs.
    Because it was developed for that broader context, it is overgeneralized
    when used here for the specific use case of profiling standard Go programs.
    However, we've left the abstractions intact in order to share updates
    between our vendored copy and Google's internal one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 19:51:01 UTC 2017
    - 905 bytes
    - Viewed (0)
  10. src/runtime/tagptr_64bit.go

    	// We use one bit to distinguish between the two ranges.
    	aixAddrBits = 57
    	aixTagBits  = 64 - aixAddrBits + 3
    
    	// riscv64 SV57 mode gives 56 bits of userspace VA.
    	// tagged pointer code supports it,
    	// but broader support for SV57 mode is incomplete,
    	// and there may be other issues (see #54104).
    	riscv64AddrBits = 56
    	riscv64TagBits  = 64 - riscv64AddrBits + 3
    )
    
    // The number of bits stored in the numeric tag of a taggedPointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top