Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for jums (0.01 seconds)

  1. src/main/webapp/css/chat.css

        padding: 0 0.25rem;
    }
    
    .input-hint {
        font-size: 0.6875rem;
        color: #8993a4;
    }
    
    .char-counter {
        font-size: 0.6875rem;
        color: #8993a4;
        font-variant-numeric: tabular-nums;
    }
    
    .char-counter.warning {
        color: #ff991f;
    }
    
    .char-counter.danger {
        color: #de350b;
    }
    
    /* ============================================
       Responsive adjustments
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            return "Unknown";
        }
    
        /**
         * Gets the instance ID for this Fess instance.
         * Combines scheduler.target.name (if configured), hostname, and PID
         * to ensure uniqueness across multiple JVMs on the same host.
         *
         * @return The instance ID.
         */
        public String getInstanceId() {
            final String targetName = ComponentUtil.getFessConfig().getSchedulerTargetName();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
Back to Top