Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for URLSearchParams (0.39 sec)

  1. src/cmd/trace/goroutines.go

      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    function reloadTable(key, value) {
      let params = new URLSearchParams(window.location.search);
      params.set(key, value);
      window.location.search = params.toString();
    }
    </script>
    
    <h1>Goroutines</h1>
    
    Table of contents
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/trace/regions.go

      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    </style>
    
    <script>
    function reloadTable(key, value) {
      let params = new URLSearchParams(window.location.search);
      params.set(key, value);
      window.location.search = params.toString();
    }
    </script>
    
    <h1>Regions: {{.Name}}</h1>
    
    Table of contents
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      function setHrefParams(elem, paramSetter) {
        let url = new URL(elem.href);
        url.hash = '';
    
        // Copy params from this page's URL.
        const params = url.searchParams;
        for (const p of new URLSearchParams(window.location.search)) {
          params.set(p[0], p[1]);
        }
    
        // Give the params to the setter to modify.
        paramSetter(params);
    
        elem.href = url.toString();
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        if (!elem) return;
    
        let url = new URL(elem.href);
        url.hash = '';
    
        // Copy params from this page's URL.
        const params = url.searchParams;
        for (const p of new URLSearchParams(window.location.search)) {
          params.set(p[0], p[1]);
        }
    
        // Update params to include src.
        let v = pprofQuoteMeta(stacks.Sources[src].FullName);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top