Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for findSession (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

         * Finds a session by ID without updating the last accessed time.
         *
         * @param sessionId the session ID
         * @return the session, or null if not found or expired
         */
        private ChatSession findSession(final String sessionId) {
            final ChatSession session = sessionCache.get(sessionId);
            if (session == null) {
                if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

        }
    }
    
    fun configFile(fileName: String) = resources.text.fromFile(rules.asFileTree.filter { it.name == fileName })
    
    checkstyle {
        buildLibs?.let {
            toolVersion = buildLibs.findVersion("checkstyle").get().requiredVersion
        }
        config = configFile("checkstyle.xml")
        val projectDirectory = layout.projectDirectory
        configDirectory = rules.elements.map {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
Back to Top