Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ConnectionState (0.23 sec)

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

                                ServerMessageBlock andxResponse ) throws SmbException {
    
    synchronized (session.transport()) {
            String unc;
    
            while (connectionState != 0) {
                if (connectionState == 2 || connectionState == 3) // connected or disconnecting
                    return;
                try {
                    session.transport.wait();
                } catch (InterruptedException ie) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                    + this.targetDomain + ",uid=" + this.uid + ",connectionState=" + this.connectionState + ",usage=" + this.usageCount.get() + "]";
        }
    
    
        void setUid ( int uid ) {
            this.uid = uid;
        }
    
    
        void setSessionSetup ( Smb2SessionSetupResponse response ) {
            this.extendedSecurity = true;
            this.connectionState.set(2);
            this.sessionId = response.getSessionId();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

        public String toString () {
            return "SmbTree[share=" + this.share + ",service=" + this.service + ",tid=" + this.tid + ",inDfs=" + this.inDfs + ",inDomainDfs="
                    + this.inDomainDfs + ",connectionState=" + this.connectionState + ",usage=" + this.usageCount.get() + "]";
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

            int state = 10;
    
            while (connectionState != 0) {
                if (connectionState == 2 || connectionState == 3) // connected or disconnecting
                    return;
                try {
                    transport.wait();
                } catch (InterruptedException ie) {
                    throw new SmbException(ie.getMessage(), ie);
                }
            }
            connectionState = 1; // trying ...
    
            try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  5. docs_src/sql_databases_peewee/sql_app/database.py

    DATABASE_NAME = "test.db"
    db_state_default = {"closed": None, "conn": None, "ctx": None, "transactions": None}
    db_state = ContextVar("db_state", default=db_state_default.copy())
    
    
    class PeeweeConnectionState(peewee._ConnectionState):
        def __init__(self, **kwargs):
            super().__setattr__("_state", db_state)
            super().__init__(**kwargs)
    
        def __setattr__(self, name, value):
            self._state.get()[name] = value
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 662 bytes
    - Viewed (0)
  6. api/go1.21.txt

    pkg crypto/tls, method (*Config) DecryptTicket([]uint8, ConnectionState) (*SessionState, error) #60105
    pkg crypto/tls, method (*Config) EncryptTicket(ConnectionState, *SessionState) ([]uint8, error) #60105
    pkg crypto/tls, method (*QUICConn) Close() error #44886
    pkg crypto/tls, method (*QUICConn) ConnectionState() ConnectionState #44886
    pkg crypto/tls, method (*QUICConn) HandleData(QUICEncryptionLevel, []uint8) error #44886
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  7. doc/godebug.md

    Go 1.22 disabled
    [`ConnectionState.ExportKeyingMaterial`](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial)
    when the connection supports neither TLS 1.3 nor Extended Master Secret
    (implemented in Go 1.21). It can be reenabled with the [`tlsunsafeekm`
    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  8. api/go1.15.txt

    pkg crypto/tls, method (ClientAuthType) String() string
    pkg crypto/tls, method (CurveID) String() string
    pkg crypto/tls, method (SignatureScheme) String() string
    pkg crypto/tls, type Config struct, VerifyConnection func(ConnectionState) error
    pkg crypto/tls, type Dialer struct
    pkg crypto/tls, type Dialer struct, Config *Config
    pkg crypto/tls, type Dialer struct, NetDialer *net.Dialer
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg crypto/tls, method (*Config) SetSessionTicketKeys([][32]uint8)
    pkg crypto/tls, type Certificate struct, SignedCertificateTimestamps [][]uint8
    pkg crypto/tls, type ConnectionState struct, OCSPResponse []uint8
    pkg crypto/tls, type ConnectionState struct, SignedCertificateTimestamps [][]uint8
    pkg crypto/x509, method (*CertificateRequest) CheckSignature() error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. api/go1.8.txt

    pkg math/rand, type Source64 interface, Uint64() uint64
    pkg net/http, const TrailerPrefix ideal-string
    pkg net/http, const TrailerPrefix = "Trailer:"
    pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeDone func(tls.ConnectionState, error)
    pkg net/http/httptrace, type ClientTrace struct, TLSHandshakeStart func()
    pkg net/http/httputil, type ReverseProxy struct, ModifyResponse func(*http.Response) error
    pkg net/http, method (*Server) Close() error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
Back to top