Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for op_timeout (0.17 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

    synchronized (transport()) {
            if( response != null ) {
                response.received = false;
            }
    
            expiration = System.currentTimeMillis() + SmbTransport.SO_TIMEOUT;
            sessionSetup( request, response );
            if( response != null && response.received ) {
                return;
            }
    
            if (request instanceof SmbComTreeConnectAndX) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                        try {
                            long timeout = getResponseTimeout(chain);
                            if ( params.contains(RequestParam.NO_TIMEOUT) ) {
                                this.credits.acquire(cost);
                            }
                            else {
                                if ( !this.credits.tryAcquire(cost, timeout, TimeUnit.MILLISECONDS) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  3. src/runtime/os_freebsd.go

    		futexsleep1(addr, val, ns)
    	})
    }
    
    func futexsleep1(addr *uint32, val uint32, ns int64) {
    	var utp *umtx_time
    	if ns >= 0 {
    		var ut umtx_time
    		ut._clockid = _CLOCK_MONOTONIC
    		ut._timeout.setNsec(ns)
    		utp = &ut
    	}
    	ret := sys_umtx_op(addr, _UMTX_OP_WAIT_UINT_PRIVATE, val, unsafe.Sizeof(*utp), utp)
    	if ret >= 0 || ret == -_EINTR || ret == -_ETIMEDOUT {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js.map

    ontains(ClassName.SHOW)) {\n      return\n    }\n\n    $(this._element).trigger(Event.HIDE)\n\n    if (withoutTimeout) {\n      this._close()\n    } else {\n      this._timeout = setTimeout(() => {\n        this._close()\n      }, this._config.delay)\n    }\n  }\n\n  dispose() {\n    clearTimeout(this._timeout)\n    this._timeout = null\n\n    if (this._element.classList.contains(ClassName.SHOW)) {\n      this._element.classList.remove(ClassName.SHOW)\n    }\n\n    $(this._element).off(Event.CLICK_DISMISS)\n\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  5. src/main/webapp/js/bootstrap.min.js.map

       }\n\n      this._enter(null, this)\n    }\n  }\n\n  dispose() {\n    clearTimeout(this._timeout)\n\n    $.removeData(this.element, this.constructor.DATA_KEY)\n\n    $(this.element).off(this.constructor.EVENT_KEY)\n    $(this.element).closest('.modal').off('hide.bs.modal', this._hideModalHandler)\n\n    if (this.tip) {\n      $(this.tip).remove()\n    }\n\n    this._isEnabled     = null\n    this._timeout       = null\n    this._hoverState    = null\n    this._activeTrigger = null\n    if (this._popper)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

            if ( isDisconnected() && this.state != 5 ) {
                throw new TransportException("Transport is disconnected " + this.name);
            }
            try {
                long timeout = !params.contains(RequestParam.NO_TIMEOUT) ? getResponseTimeout(request) : 0;
    
                long firstKey = doSend(request, response, params, timeout);
    
                if ( Thread.currentThread() == this.thread ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	BPX_S_IRGRP  = 0x20
    	BPX_S_IWGRP  = 0x10
    	BPX_S_IXGRP  = 0x08
    	BPX_S_IRWXOX = 0x07
    	BPX_S_IROTH  = 0x04
    	BPX_S_IWOTH  = 0x02
    	BPX_S_IXOTH  = 0x01
    
    	CW_INTRPT  = 1
    	CW_CONDVAR = 32
    	CW_TIMEOUT = 64
    
    	PGTHA_NEXT        = 2
    	PGTHA_CURRENT     = 1
    	PGTHA_FIRST       = 0
    	PGTHA_LAST        = 3
    	PGTHA_PROCESS     = 0x80
    	PGTHA_CONTTY      = 0x40
    	PGTHA_PATH        = 0x20
    	PGTHA_COMMAND     = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg syscall (darwin-arm64), func BpfStmt //deprecated
    pkg syscall (darwin-arm64), func BpfStmt(int, int) *BpfInsn
    pkg syscall (darwin-arm64), func BpfTimeout //deprecated
    pkg syscall (darwin-arm64), func BpfTimeout(int) (*Timeval, error)
    pkg syscall (darwin-arm64), func CheckBpfVersion //deprecated
    pkg syscall (darwin-arm64), func CheckBpfVersion(int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbSessionImpl.java

                    response.clearReceived();
                    response.setExtendedSecurity(this.extendedSecurity);
                }
    
                try {
                    if ( params.contains(RequestParam.NO_TIMEOUT) ) {
                        this.expiration = -1;
                    }
                    else {
                        this.expiration = System.currentTimeMillis() + this.transportContext.getConfig().getSoTimeout();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.js

    [n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(_t[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4=...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
Back to top