Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,120 for promises (0.13 sec)

  1. src/cmd/go/internal/search/search.go

    					// The package does not actually exist, so record neither the package
    					// nor the error.
    					return nil
    				}
    				// There was an error importing path, but not matching it,
    				// which is all that Match promises to do.
    				// Ignore the import error.
    			}
    
    			// If we are expanding "cmd", skip main
    			// packages under cmd/vendor. At least as of
    			// March, 2017, there is one there for the
    			// vendored pprof tool.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // callable actually completes. (We could detect completion in our wrapper
                // `AsyncCallable task`.) However, our contract also promises:
                //
                // 2. not to cancel any Future the user returned from an AsyncCallable
                //
                // We promise this because, once we cancel that Future, we would no longer be able to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // callable actually completes. (We could detect completion in our wrapper
                // `AsyncCallable task`.) However, our contract also promises:
                //
                // 2. not to cancel any Future the user returned from an AsyncCallable
                //
                // We promise this because, once we cancel that Future, we would no longer be able to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/proxy.go

    //
    // If GOPROXY is set to "off", TryProxies invokes f once with the argument
    // "off".
    func TryProxies(f func(proxy string) error) error {
    	proxies, err := proxyList()
    	if err != nil {
    		return err
    	}
    	if len(proxies) == 0 {
    		panic("GOPROXY list is empty")
    	}
    
    	// We try to report the most helpful error to the user. "direct" and "noproxy"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_openbsd_riscv64.go

    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    	SYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, \
    	SYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
    	SYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. misc/cgo/gmp/gmp.go

    type Int struct {
    	i    C.mpz_t
    	init bool
    }
    
    // NewInt returns a new Int initialized to x.
    func NewInt(x int64) *Int { return new(Int).SetInt64(x) }
    
    // Int promises that the zero value is a 0, but in gmp
    // the zero value is a crash.  To bridge the gap, the
    // init bool says whether this is a valid gmp value.
    // doinit initializes z.i if it needs it.  This is not inherent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          }
        }
    
        @Throws(IOException::class)
        private fun pushPromises(
          stream: Http2Stream,
          request: RecordedRequest,
          promises: List<PushPromise>,
        ) {
          for (pushPromise in promises) {
            val pushedHeaders = mutableListOf<Header>()
            pushedHeaders.add(Header(Header.TARGET_AUTHORITY, url(pushPromise.path).host))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_openbsd_mips64.go

    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    	SYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, \
    	SYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
    	SYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 14.9K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_openbsd_arm64.go

    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    	SYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, \
    	SYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
    	SYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_openbsd_ppc64.go

    	SYS_LISTEN         = 106 // { int sys_listen(int s, int backlog); }
    	SYS_CHFLAGSAT      = 107 // { int sys_chflagsat(int fd, const char *path, \
    	SYS_PLEDGE         = 108 // { int sys_pledge(const char *promises, \
    	SYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, \
    	SYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, \
    	SYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top