Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for polos (0.13 sec)

  1. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * is complete. It does so by using daemon threads and adding a shutdown hook to wait for their
       * completion.
       *
       * <p>This is mainly for fixed thread pools. See {@link Executors#newFixedThreadPool(int)}.
       *
       * @param executor the executor to modify to make sure it exits when the application is finished
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            append(buf, "committed", () -> mem.getNonHeapCommitted().getBytes());
            buf.append('}');
            buf.append("},");
            final List<BufferPool> bufferPools = jvmStats.getBufferPools();
            buf.append("\"pools\":{");
            buf.append(bufferPools.stream().map(p -> {
                final StringBuilder b = new StringBuilder();
                b.append('"').append(StringEscapeUtils.escapeJson(p.getName())).append("\":{");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            jvmMemoryNonHeapObj.used = mem.getNonHeapUsed().getBytes();
            jvmMemoryNonHeapObj.committed = mem.getNonHeapCommitted().getBytes();
            final List<BufferPool> bufferPools = jvmStats.getBufferPools();
            jvmObj.pools = bufferPools.stream().map(p -> {
                final JvmPoolObj jvmPoolObj = new JvmPoolObj();
                jvmPoolObj.key = p.getName();
                jvmPoolObj.count = p.getCount();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbTransportPool.java

     */
    package jcifs;
    
    
    import java.io.IOException;
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    
    /**
     * This is an internal API for managing pools of SMB connections
     * 
     * @author mbechler
     * @internal
     */
    public interface SmbTransportPool {
    
        /**
         * @param tf
         * @param name
         * @param port
         * @param exclusive
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
Back to top