Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for SessionId (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsCrawlingInfoCB.java

                doColumn("expiredTime");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnSessionId() {
                doColumn("sessionId");
            }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"suggest_indexer"}}
    {"name":"Suggest Indexer","target":"all","cronExpression":"0 12 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"suggestJob\").logLevel(\"info\").sessionId(\"SUGGEST\").execute(executor);","jobLogging":true,"crawler":false,"available":true,"sortOrder":2,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

        }
    
        public void test_sessionCountId() {
            final String sessionId = "12345";
            final String sessionCountId = sessionId + "-1";
            assertNull(crawlingConfigHelper.get(sessionCountId));
            crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W1"));
            assertEquals("1", crawlingConfigHelper.get(sessionCountId).getId());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    	return &clientHelloMsg{
    		original:                         slices.Clone(m.original),
    		vers:                             m.vers,
    		random:                           slices.Clone(m.random),
    		sessionId:                        slices.Clone(m.sessionId),
    		cipherSuites:                     slices.Clone(m.cipherSuites),
    		compressionMethods:               slices.Clone(m.compressionMethods),
    		serverName:                       m.serverName,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            if (fessConfig.isCrawlerFailureUrlStatusCodes(responseData.getHttpStatusCode())) {
                final String sessionId = crawlerContext.getSessionId();
                final CrawlingConfig crawlingConfig = ComponentUtil.getCrawlingConfigHelper().get(sessionId);
                final String url = urlQueue.getUrl();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final String sessionId = crawlingInfoHelper.getCanonicalSessionId(responseData.getSessionId());
            final PathMappingHelper pathMappingHelper = ComponentUtil.getPathMappingHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String sessionId = "session1";
    
            assertEquals(1, indexingHelper.deleteBySessionId(sessionId));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("segment", resultMap.get("field"));
            assertEquals(sessionId, resultMap.get("value"));
        }
    
        public void test_deleteByConfigId() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    	return nil
    }
    
    func (hs *clientHandshakeState) serverResumedSession() bool {
    	// If the server responded with the same sessionId then it means the
    	// sessionTicket is being used to resume a TLS session.
    	return hs.session != nil && hs.hello.sessionId != nil &&
    		bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
    }
    
    func (hs *clientHandshakeState) processServerHello() (bool, error) {
    	c := hs.c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/util/SMBUtil.java

            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // TreeId / AsyncId
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // SessionId
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // Signature
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

            RenderDataUtil.register(data, "crawlingInfoItems", crawlingInfoService.getCrawlingInfoList(crawlingInfoPager)); // page navi
    
            // restore from pager
            copyBeanToBean(crawlingInfoPager, form, op -> op.include("sessionId"));
        }
    
        // ===================================================================================
        //                                                                        Edit Execute
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top