Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for uri (0.17 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                              type: string
                            uri:
                              description: rewrite the path (or the prefix) portion of
                                the URI with this value.
                              type: string
                            uriRegexRewrite:
                              description: rewrite the path portion of the URI with the
                                specified regex.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  2. cmd/utils.go

    // If input is nil an empty map is returned, not nil.
    func cloneMSS(v map[string]string) map[string]string {
    	r := make(map[string]string, len(v))
    	for k, v := range v {
    		r[k] = v
    	}
    	return r
    }
    
    // URI scheme constants.
    const (
    	httpScheme  = "http"
    	httpsScheme = "https"
    )
    
    // nopCharsetConverter is a dummy charset convert which just copies input to output,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 32K bytes
    - Viewed (0)
Back to top