Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for OpenBrowser (0.19 sec)

  1. src/cmd/go/internal/web/bootstrap.go

    package web
    
    import (
    	"errors"
    	urlpkg "net/url"
    )
    
    func get(security SecurityMode, url *urlpkg.URL) (*Response, error) {
    	return nil, errors.New("no http in bootstrap go command")
    }
    
    func openBrowser(url string) bool { return false }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 691 bytes
    - Viewed (0)
  2. 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.
    func Join(u *url.URL, path string) *url.URL {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    				p.Write(w)
    			}),
    		},
    	}
    
    	url := "http://" + args.Hostport
    
    	o.UI.Print("Serving web UI on ", url)
    
    	if o.UI.WantBrowser() && !disableBrowser {
    		go openBrowser(url, o)
    	}
    	return server(args)
    }
    
    func getHostAndPort(hostport string) (string, int, error) {
    	host, portStr, err := net.SplitHostPort(hostport)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. src/cmd/go/internal/bug/bug.go

    	printEnvDetails(&buf)
    	buf.WriteString(bugFooter)
    
    	body := buf.String()
    	url := "https://github.com/golang/go/issues/new?body=" + urlpkg.QueryEscape(body)
    	if !web.OpenBrowser(url) {
    		fmt.Print("Please file a new issue at golang.org/issue/new using this template:\n\n")
    		fmt.Print(body)
    	}
    }
    
    const bugHeader = `<!-- Please answer these questions before submitting your issue. Thanks! -->
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/web/http.go

    		return nil, err
    	}
    
    	return &Response{
    		URL:        u.Redacted(),
    		Status:     http.StatusText(http.StatusOK),
    		StatusCode: http.StatusOK,
    		Body:       f,
    	}, nil
    }
    
    func openBrowser(url string) bool { return browser.Open(url) }
    
    func isLocalHost(u *urlpkg.URL) bool {
    	// VCSTestRepoURL itself is secure, and it may redirect requests to other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. istioctl/pkg/dashboard/dashboard.go

    			continue
    		}
    
    		// Close the port forwarder when the command is terminated.
    		ClosePortForwarderOnInterrupt(fw)
    
    		log.Debugf(fmt.Sprintf("port-forward to %s pod ready", flavor))
    		openBrowser(fmt.Sprintf(urlFormat, fw.Address()), writer, browser)
    
    		// Wait for stop
    		fw.WaitForStop()
    
    		return nil
    	}
    
    	return fmt.Errorf("failure running port forward process: %v", err)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top