Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 368 for loading (0.03 sec)

  1. src/main/java/org/codelibs/core/misc/DynamicProperties.java

    import org.codelibs.core.exception.FileAccessException;
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * The {@code DynamicProperties} class extends {@link Properties} to provide dynamic
     * loading and storing of properties from a file. It monitors the file for changes
     * and reloads the properties if the file is updated. This class is thread-safe and
     * ensures that the properties are always up-to-date.
     *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. README.md

    ## 🔧 Configuration
    
    ### Logging Configuration
    CoreLib supports multiple logging frameworks. Configure your preferred logger:
    
    ```java
    // Use with SLF4J (add slf4j-api dependency)
    Logger logger = Logger.getLogger(MyClass.class);
    
    // Use with Commons Logging (add commons-logging dependency)  
    Logger logger = Logger.getLogger(MyClass.class);
    
    // Use with Java Util Logging (built-in)
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/StandardSystemProperty.java

      /** Java class format version number. */
      JAVA_CLASS_VERSION("java.class.version"),
    
      /** Java class path. */
      JAVA_CLASS_PATH("java.class.path"),
    
      /** List of paths to search when loading libraries. */
      JAVA_LIBRARY_PATH("java.library.path"),
    
      /** Default temp file path. */
      JAVA_IO_TMPDIR("java.io.tmpdir"),
    
      /** Name of JIT compiler to use. */
      JAVA_COMPILER("java.compiler"),
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 06 10:03:30 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CurlHelper.java

    import java.security.cert.CertificateFactory;
    
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.SSLSocketFactory;
    import javax.net.ssl.TrustManagerFactory;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.Curl.Method;
    import org.codelibs.curl.CurlRequest;
    import org.codelibs.fesen.client.curl.FesenRequest;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            public JvmPoolObj[] pools;
            /** JVM garbage collection statistics */
            public JvmGcObj[] gc;
            /** JVM thread statistics */
            public JvmThreadsObj threads;
            /** JVM class loading statistics */
            public JvmClassesObj classes;
            /** JVM uptime in milliseconds */
            public long uptime;
        }
    
        /**
         * Data transfer object representing JVM memory statistics.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  6. src/main/webapp/js/search.js

          }
          imgData = null;
        });
        imgData.src = url;
      };
    
      $("img.thumbnail").each(function() {
        $(this).css(
          "background-image",
          'url("' + contextPath + '/images/loading.gif")'
        );
        loadImage(this, $(this).attr("data-src"), IMG_LOADING_MAX);
      });
      
      clipboard = new ClipboardJS(".url-copy");
      clipboard.on("success", function(e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

       * AtomicIntegerFieldUpdater}, which will prevent us from selecting the {@code SafeAtomicHelper}
       * strategy.
       *
       * <p>Stashing this in a static field avoids loading it over and over again and speeds up test
       * execution significantly.
       */
      private static final ClassLoader NO_ATOMIC_FIELD_UPDATER =
          getClassLoader(
              ImmutableSet.of(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/LittleEndianByteArray.java

    import java.security.PrivilegedActionException;
    import java.security.PrivilegedExceptionAction;
    import java.util.Objects;
    import org.jspecify.annotations.Nullable;
    import sun.misc.Unsafe;
    
    /**
     * Utility functions for loading and storing values from a byte array.
     *
     * @author Kevin Damm
     * @author Kyle Maddison
     */
    final class LittleEndianByteArray {
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            assertEquals(longMessage, exception.getMessage());
        }
    
        public void test_throwAndCatch() {
            // Test throwing and catching the exception
            String expectedMessage = "Theme loading error";
    
            try {
                throw new ThemeException(expectedMessage);
            } catch (ThemeException e) {
                assertEquals(expectedMessage, e.getMessage());
                assertNull(e.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

     * AbstractFutureTest test methods in these degenerate classloaders.
     */
    
    @NullUnmarked
    public class AbstractFutureFallbackAtomicHelperTest extends TestCase {
    
      // stash these in static fields to avoid loading them over and over again (speeds up test
      // execution significantly)
    
      /**
       * This classloader disallows {@link java.lang.invoke.VarHandle}, which will prevent us from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top