Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for WEB (0.09 sec)

  1. cmd/api-response.go

    	if err.HTTPStatusCode == http.StatusServiceUnavailable {
    		// Set retry-after header to indicate user-agents to retry request after 120secs.
    		// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After
    		w.Header().Set(xhttp.RetryAfter, "120")
    	}
    
    	switch err.Code {
    	case "InvalidRegion":
    		err.Description = fmt.Sprintf("Region does not match; expecting '%s'.", globalSite.Region())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	}
    
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // AssumeRoleWithWebIdentity - implementation of AWS STS API supporting OAuth2.0
    // users from web identity provider such as Facebook, Google, or any OpenID
    // Connect-compatible identity provider.
    //
    // Eg:-
    //
    //	$ curl https://minio:9000/?Action=AssumeRoleWithWebIdentity&WebIdentityToken=<jwt>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * ✏️ Fix typo in `docs/ru/docs/index.md`. PR [#10672](https://github.com/tiangolo/fastapi/pull/10672) by [@Delitel-WEB](https://github.com/Delitel-WEB).
    * ✏️ Fix typos in `docs/zh/docs/tutorial/extra-data-types.md`. PR [#10727](https://github.com/tiangolo/fastapi/pull/10727) by [@HiemalBeryl](https://github.com/HiemalBeryl).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	}
    	if protocol.Parse(port.Protocol) == protocol.Unsupported {
    		errs = AppendValidation(errs, fmt.Errorf("invalid protocol %q, supported protocols are HTTP, HTTP2, GRPC, GRPC-WEB, MONGO, REDIS, MYSQL, TCP", port.Protocol))
    	}
    	if port.Number > 0 || !strings.HasPrefix(bind, UnixAddressPrefix) {
    		errs = AppendValidation(errs, agent.ValidatePort(int(port.Number)))
    	}
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          description: Identifies the issuer that issued the JWT.
                          minLength: 1
                          type: string
                        jwks:
                          description: JSON Web Key Set of public keys to validate signature
                            of the JWT.
                          type: string
                        jwks_uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // placed in the main GOPATH, never in a vendor subtree.
    //
    // 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.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                          description: Identifies the issuer that issued the JWT.
                          minLength: 1
                          type: string
                        jwks:
                          description: JSON Web Key Set of public keys to validate signature
                            of the JWT.
                          type: string
                        jwks_uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/api/core/v1.PodTemplateSpec"),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    //
    // For use like:
    //
    //	$ go test -c
    //	$ ./http.test -test.run='^$' -test.bench='^BenchmarkServer$' -test.benchtime=15s -test.cpuprofile=http.prof
    //	$ go tool pprof http.test http.prof
    //	(pprof) web
    func BenchmarkServer(b *testing.B) {
    	b.ReportAllocs()
    	// Child process mode;
    	if url := os.Getenv("TEST_BENCH_SERVER_URL"); url != "" {
    		n, err := strconv.Atoi(os.Getenv("TEST_BENCH_CLIENT_N"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. CREDITS

      If your software can interact with users remotely through a computer
    network, you should also make sure that it provides a way for users to
    get its source.  For example, if your program is a web application, its
    interface could display a "Source" link that leads users to an archive
    of the code.  There are many ways you could offer source, and different
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top