Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ParseTilePath (0.12 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    			return
    		}
    		w.Header().Set("Content-Type", "text/plain; charset=UTF-8")
    		w.Write(data)
    
    	case strings.HasPrefix(r.URL.Path, "/tile/"):
    		t, err := tlog.ParseTilePath(r.URL.Path[1:])
    		if err != nil {
    			http.Error(w, "invalid tile syntax", http.StatusBadRequest)
    			return
    		}
    		if t.L == -1 {
    			// Record data.
    			start := t.N << uint(t.H)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top