Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for Recognizes (1.23 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        bulkFuture.addListener(
            new Runnable() {
              @Override
              public void run() {
                /*
                 * This is similar to the above test, but this time we're making sure that we recognize
                 * that the output Future is done early not because of an exception but because of a
                 * cancellation.
                 */
                secondFuture.setException(subsequentFailure);
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        bulkFuture.addListener(
            new Runnable() {
              @Override
              public void run() {
                /*
                 * This is similar to the above test, but this time we're making sure that we recognize
                 * that the output Future is done early not because of an exception but because of a
                 * cancellation.
                 */
                secondFuture.setException(subsequentFailure);
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    // Valid: "foo", "%HOSTNAME%", "100%%", "prefix %HOSTNAME% suffix"
    // Invalid: "abc%123", "%START_TIME%%"
    // We don't try to check that what is inside the %% is one of Envoy recognized values, we just prevent invalid config.
    // See: https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_conn_man/headers.html#custom-request-response-headers
    func ValidateHTTPHeaderValue(value string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        params+=("--configure-cloud-routes=false")
      fi
      if [[ -n "${FEATURE_GATES:-}" ]]; then
        # remove non-GCP feature gates, since the CCM will early exit
        # if given a feature gate it doesn't recognize
        echo "Setting feature gates for cloud provider controller-manager from ${CCM_FEATURE_GATES}"
        local CCM_FEATURE_GATES_FILTER
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    type initALPNRequest struct {
    	ctx context.Context
    	c   *tls.Conn
    	h   serverHandler
    }
    
    // BaseContext is an exported but unadvertised [http.Handler] method
    // recognized by x/net/http2 to pass down a context; the TLSNextProto
    // API predates context support so we shoehorn through the only
    // interface we have available.
    func (h initALPNRequest) BaseContext() context.Context { return h.ctx }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. fastapi/applications.py

                    FastAPI will generate OpenAPI version 3.1.0, and will output that as
                    the OpenAPI version. But some tools, even though they might be
                    compatible with OpenAPI 3.1.0, might not recognize it as a valid.
    
                    So you could override this value to trick those tools into using
                    the generated OpenAPI. Have in mind that this is a hack. But if you
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top