Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for SessionId (0.12 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

                result.setExpiredTime(DfTypeUtil.toLong(source.get("expiredTime")));
                result.setName(DfTypeUtil.toString(source.get("name")));
                result.setSessionId(DfTypeUtil.toString(source.get("sessionId")));
                return updateEntity(source, result);
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. cmd/sftp-server_test.go

    	"github.com/minio/madmin-go/v3"
    	"golang.org/x/crypto/ssh"
    )
    
    type MockConnMeta struct {
    	username string
    }
    
    func (m *MockConnMeta) User() string {
    	return m.username
    }
    
    func (m *MockConnMeta) SessionID() []byte {
    	return []byte{}
    }
    
    func (m *MockConnMeta) ClientVersion() []byte {
    	return []byte{}
    }
    
    func (m *MockConnMeta) ServerVersion() []byte {
    	return []byte{}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages_test.go

    	return string(b)
    }
    
    func (*clientHelloMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientHelloMsg{}
    	m.vers = uint16(rand.Intn(65536))
    	m.random = randomBytes(32, rand)
    	m.sessionId = randomBytes(rand.Intn(32), rand)
    	m.cipherSuites = make([]uint16, rand.Intn(63)+1)
    	for i := 0; i < len(m.cipherSuites); i++ {
    		cs := uint16(rand.Int31())
    		if cs == scsvRenegotiation {
    			cs += 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) {
            if (StringUtil.isBlank(crawlingInfoId)) {
                throw new CrawlingAccessException("sessionId is null.");
            }
    
            final CrawlerClientFactory crawlerClientFactory = crawlingConfig.initializeClientFactory(ComponentUtil::getCrawlerClientFactory);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String DATA_INDEX_EXEC_TIME = "DataIndexExecTime";
    
        public static final String DATA_INDEX_SIZE = "DataIndexSize";
    
        public static final String SESSION_ID = "sessionId";
    
        public static final String CRAWLING_INFO_ID = "crawlingInfoId";
    
        public static final String INDEXING_TARGET = "indexingTarget";
    
        public static final String NUM_OF_THREADS = "numOfThreads";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    		len(hs.serverHello.scts) != 0 {
    		c.sendAlert(alertUnsupportedExtension)
    		return errors.New("tls: server sent a ServerHello extension forbidden in TLS 1.3")
    	}
    
    	if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: server did not echo the legacy session ID")
    	}
    
    	if hs.serverHello.compressionMethod != compressionNone {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    	c := hs.c
    
    	hs.hello.cipherSuite = hs.suite.id
    	c.cipherSuite = hs.suite.id
    	// We echo the client's session ID in the ServerHello to let it know
    	// that we're doing a resumption.
    	hs.hello.sessionId = hs.clientHello.sessionId
    	// We always send a new session ticket, even if it wraps the same master
    	// secret and it's potentially encrypted with the same key, to help the
    	// client avoid cross-connection tracking from a network observer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (1)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	WTSListen       = 6
    	WTSReset        = 7
    	WTSDown         = 8
    	WTSInit         = 9
    )
    
    type WTSSESSION_NOTIFICATION struct {
    	Size      uint32
    	SessionID uint32
    }
    
    type WTS_SESSION_INFO struct {
    	SessionID         uint32
    	WindowStationName *uint16
    	State             uint32
    }
    
    //sys WTSQueryUserToken(session uint32, token *Token) (err error) = wtsapi32.WTSQueryUserToken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /**
         * @return the extendedSecurity
         */
        public boolean isExtendedSecurity () {
            return this.extendedSecurity;
        }
    
    
        @Override
        public final void setSessionId ( long sessionId ) {
            // ignore
        }
    
    
        /**
         * @param extendedSecurity
         *            the extendedSecurity to set
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	AtlThunkSListPtr32     uint32
    	reserved9              [45]uintptr
    	reserved10             [96]byte
    	PostProcessInitRoutine uintptr
    	reserved11             [128]byte
    	reserved12             [1]uintptr
    	SessionId              uint32
    }
    
    type OBJECT_ATTRIBUTES struct {
    	Length             uint32
    	RootDirectory      Handle
    	ObjectName         *NTUnicodeString
    	Attributes         uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top