Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for wads (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * #from(ListenableFuture)} instead.
     *
     * <h3>Derived steps</h3>
     *
     * A {@code ClosingFuture} step can be derived from one or more input {@code ClosingFuture} steps in
     * ways similar to {@link FluentFuture}s:
     *
     * <ul>
     *   <li>by transforming the value from a successful input step,
     *   <li>by catching the exception from a failed input step, or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    "type of the condition. Known conditions are \"Approved\", \"Denied\", and \"Failed\".\n\nAn \"Approved\" condition is added via the /approval subresource, indicating the request was approved and should be issued by the signer.\n\nA \"Denied\" condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signer.\n\nA \"Failed\" condition is added via the /status subresource, indicating the signer failed to issue the certificate.\n\nApproved and...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "in": "query",
                "name": "limit",
                "schema": {
                  "type": "integer",
                  "uniqueItems": true
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape CaseRegion outputs based on the embedded StableHLO module.
      // Returns true if a return type was changed.
      bool InferShapeForXlaCallModule(XlaCallModuleOp op);
    
      // Infers the shape of _XlaHostComputeMlir based on the host computation
      // module.  Returns true if a return type was changed.
      bool InferShapeForXlaHostComputeMlir(_XlaHostComputeMlirOp op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "in": "query",
                "name": "limit",
                "schema": {
                  "type": "integer",
                  "uniqueItems": true
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // has successfully reacquired the P it was running on before the
    // syscall.
    //
    //go:nosplit
    func exitsyscallfast_reacquired(trace traceLocker) {
    	gp := getg()
    	if gp.m.syscalltick != gp.m.p.ptr().syscalltick {
    		if trace.ok() {
    			// The p was retaken and then enter into syscall again (since gp.m.syscalltick has changed).
    			// traceGoSysBlock for this syscall was already emitted,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

        mutex_lock session_lock(it.first->mu);
        if (it.first->last_num_graph_nodes > op.node.id()) {
          it.second = strings::StrCat(
              "Operation '", op.node.DebugString(), "' was changed by ",
              mutation_type,
              " after it was run by a session. This mutation will have no effect, "
              "and will trigger an error in the future. Either don't modify "
              "nodes after running them or create a new session.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	}
    	timeout := 300 * time.Millisecond
    	ts := newClientServerTest(t, mode, TimeoutHandler(handler, timeout, "")).ts
    	defer ts.Close()
    
    	c := ts.Client()
    
    	// Issue was caused by the timeout handler starting the timer when
    	// was created, not when the request. So wait for more than the timeout
    	// to ensure that's not the case.
    	time.Sleep(2 * timeout)
    	res, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "in": "query",
                "name": "limit",
                "schema": {
                  "type": "integer",
                  "uniqueItems": true
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<IllegalArgumentException> {
          requestBuilder.url("ftp://hostname/path")
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Expected URL scheme 'http' or 'https' but was 'ftp'")
        }
      }
    
      @Test
      fun invalidPort() {
        val requestBuilder = Request.Builder()
        assertFailsWith<IllegalArgumentException> {
          requestBuilder.url("http://localhost:65536/")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
Back to top