Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 190 for too (0.04 sec)

  1. src/crypto/tls/tls_test.go

    		}
    
    		listener.Close()
    
    		// We're looking for a timeout during the handshake, so check that the
    		// Listener actually accepted the connection to initiate it. (If the server
    		// takes too long to accept the connection, we might cancel before the
    		// underlying net.Conn is ever dialed — without ever attempting a
    		// handshake.)
    		lconn, ok := <-acceptc
    		if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    // whether a pattern denotes a package or module may change as updates are
    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    			wellknown.TCPProxy,
    		}
    		verifyInboundFilterChains(t, l, httpFilters, httpNetworkFilters, tcpNetworkFilters)
    		// verifyInboundFilterChains only checks the passthrough. Ensure the main filters get created as expected, too.
    		listenertest.VerifyListener(t, l, listenertest.ListenerTest{
    			FilterChains: []listenertest.FilterChainTest{
    				{
    					Name:           "0.0.0.0_8080",
    					Type:           listenertest.MTLSHTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

       * failed future if any of the items fails.
       *
       * <p>Canceling this future will attempt to cancel all the component futures, and if any of the
       * provided futures fails or is canceled, this one is, too.
       *
       * @param futures futures to combine
       * @return a future that provides a list of the results of the component futures
       * @since 10.0
       */
      @SafeVarargs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    			// Ensure that new instances are returned for the wrapper too.
    			t.Errorf("Expected URL.Parse to return new URL instance.")
    		}
    		// Ensure Opaque resets the URL.
    		url = base.ResolveReference(opaque)
    		if *url != *opaque {
    			t.Errorf("ResolveReference failed to resolve opaque URL:\ngot  %#v\nwant %#v", url, opaque)
    		}
    		// Test the convenience wrapper with an opaque URL too.
    		url, err = base.Parse("scheme:opaque")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    			// As of Sep 2021, 90% of rewrites complete in 4 iterations or fewer
    			// and the maximum value encountered during make.bash is 12.
    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusPreconditionFailed,
    	},
    	ErrRequestTimeTooSkewed: {
    		Code:           "RequestTimeTooSkewed",
    		Description:    "The difference between the request time and the server's time is too large.",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrSignatureDoesNotMatch: {
    		Code:           "SignatureDoesNotMatch",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  8. configure.py

        default_cc_opt_flags = '-mcpu=native'
      elif is_windows():
        default_cc_opt_flags = '/arch:AVX'
      else:
        # On all other platforms, no longer use `-march=native` as this can result
        # in instructions that are too modern being generated. Users that want
        # maximum performance should compile TF in their environment and can pass
        # `-march=native` there.
        # See https://github.com/tensorflow/tensorflow/issues/45744 and duplicates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  9. src/time/time_test.go

    	if _, err := os.Stat(zero); err != nil {
    		t.Skip("skipping test without a /dev/zero")
    	}
    	_, err := ReadFile(zero)
    	if err == nil || !strings.Contains(err.Error(), "is too large") {
    		t.Errorf("readFile(%q) error = %v; want error containing 'is too large'", zero, err)
    	}
    }
    
    // Issue 25686: hard crash on concurrent timer access.
    // Issue 37400: panic with "racy use of timers"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		return e.CreateStrategy.NamespaceScoped()
    	}
    	if e.UpdateStrategy != nil {
    		return e.UpdateStrategy.NamespaceScoped()
    	}
    
    	panic("programmer error: no CRUD for resource, override NamespaceScoped too")
    }
    
    // GetCreateStrategy implements GenericStore.
    func (e *Store) GetCreateStrategy() rest.RESTCreateStrategy {
    	return e.CreateStrategy
    }
    
    // GetUpdateStrategy implements GenericStore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top