Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for getSystemProperties (0.38 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(cipherName);
        }
    
        /**
         * Gets the system properties.
         * @return The dynamic properties.
         */
        public static DynamicProperties getSystemProperties() {
            return getComponent(CRAWLER_PROPERTIES);
        }
    
        /**
         * Gets the system helper component.
         * @return The system helper.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. gradle/wrapper/gradle-wrapper.jar

    org.gradle.wrapper; public final class PathAssembler { public void PathAssembler(java.io.File, java.io.File); } org/gradle/wrapper/PropertiesFileHandle.class package org.gradle.wrapper; public abstract class PropertiesFileHandle { public static java.util.Map getSystemProperties(java.io.File); } org/gradle/wrapper/WrapperConfiguration.class package org.gradle.wrapper; public final class WrapperConfiguration { public java.net.URI distribution; public String distributionBase; public String distributionPath; public String...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final boolean isLocalFile = pos > 0 && pos < 12;
    
            final UserAgentType ua = ComponentUtil.getUserAgentHelper().getUserAgentType();
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top