Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for __callback (0.5 sec)

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

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
    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

        new ClassSanityTester()
            .forAllPublicStaticMethods(Futures.class)
            .thatReturn(Future.class)
            .testNulls();
      }
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
    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. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func SubscribeServiceChangeNotifications(service Handle, eventType uint32, callback uintptr, callbackCtx uintptr, subscription *uintptr) (ret error) {
    	ret = procSubscribeServiceChangeNotifications.Find()
    	if ret != nil {
    		return
    	}
    	r0, _, _ := syscall.Syscall6(procSubscribeServiceChangeNotifications.Addr(), 5, uintptr(service), uintptr(eventType), uintptr(callback), uintptr(callbackCtx), uintptr(unsafe.Pointer(subscription)), 0)
    	if r0 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

            &effects) {
      if (!getFunctionList().empty()) {
        // The StableHLO module embedded in XlaCallModule contains
        // `stablehlo.custom_call` calling TF host callback functions.
        // `stablehlo.custom_call` will be lowered to `stablehlo.send` and
        // `stablehlo.recv`.
        effects.emplace_back(MemoryEffects::Write::get(),
                             ResourceEffects::Send::get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// If TLSNextProto is not nil, HTTP/2 support is not enabled
    	// automatically.
    	TLSNextProto map[string]func(*Server, *tls.Conn, Handler)
    
    	// ConnState specifies an optional callback function that is
    	// called when a client connection changes state. See the
    	// ConnState type and associated constants for details.
    	ConnState func(net.Conn, ConnState)
    
    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. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    			t.Errorf("Request(s) produced unexpected state sequence.\nGot:  %v\nWant: %v", sl.got, sl.want)
    		}
    		// Don't return sl to activeLog: we don't expect any further states after
    		// this point, and want to keep the ConnState callback blocked until the
    		// next call to wantLog.
    	}
    
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		handler[r.URL.Path](w, r)
    	}), func(ts *httptest.Server) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top