Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for uris (0.04 sec)

  1. pkg/config/validation/validation.go

    	if rewrite == nil {
    		return nil
    	}
    	if rewrite.Uri != "" && rewrite.UriRegexRewrite != nil {
    		return errors.New("rewrite may only contain one of URI or UriRegexRewrite")
    	}
    	if rewrite.Uri == "" && rewrite.UriRegexRewrite == nil && rewrite.Authority == "" {
    		return errors.New("rewrite must specify at least one of URI, UriRegexRewrite, or authority. Only one of URI or UriRegexRewrite may be specified")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        users:
          - system:kube-controller-manager
          - system:cloud-controller-manager
        verbs: ["get", "list"]
        resources:
          - group: "metrics.k8s.io"
    
      # Don't log these read-only URLs.
      - level: None
        nonResourceURLs:
          - /healthz*
          - /version
          - /swagger*
    
      # Don't log events requests because of performance impact.
      - level: None
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // with the method GET matches both GET and HEAD requests.
    // Otherwise, the method must match exactly.
    //
    // A pattern with no host matches every host.
    // A pattern with a host matches URLs on that host only.
    //
    // A path can include wildcard segments of the form {NAME} or {NAME...}.
    // For example, "/b/{bucket}/o/{objectname...}".
    // The wildcard name must be a valid Go identifier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // See https://golang.org/s/go15vendor for details.
    //
    // # Module proxy protocol
    //
    // A Go module proxy is any web server that can respond to GET requests for
    // URLs of a specified form. The requests have no query parameters, so even
    // a site serving from a fixed file system (including a file:/// URL)
    // can be a module proxy.
    //
    // For details on the GOPROXY protocol, see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top