Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 595 for klog (1 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            log.println(response);
                            Hexdump.hexdump(log, rcv_buf, 0, in.getLength());
                        }
    
                        response.notify();
                    }
                }
            } catch (final SocketTimeoutException ste) {} catch (final Exception ex) {
                if (LogStream.level > 2) {
                    ex.printStackTrace(log);
                }
            } finally {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

     * require proper DiSNI integration with actual RDMA hardware.
     */
    public class DisniRdmaConnection extends RdmaConnection {
    
        private static final Logger log = LoggerFactory.getLogger(DisniRdmaConnection.class);
    
        // DiSNI objects - would be actual DiSNI types in real implementation
        private final Object endpoint; // RdmaActiveEndpoint
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. mkdocs.yml

      - 'API': 5.x/okhttp/okhttp3/
      - 'Change Logs':
        - 'Change Log': changelogs/changelog.md
        - '4.x Change Log': changelogs/changelog_4x.md
        - 'Upgrading to OkHttp 4': changelogs/upgrading_to_okhttp_4.md
        - '3.x Change Log': changelogs/changelog_3x.md
        - '2.x Change Log': changelogs/changelog_2x.md
        - '1.x Change Log': changelogs/changelog_1x.md
      - 'Contributing':
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Nov 21 07:19:31 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsSearchLogCB.java

     */
    package org.codelibs.fess.opensearch.log.cbean.bs;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.opensearch.log.allcommon.EsAbstractConditionBean;
    import org.codelibs.fess.opensearch.log.bsentity.dbmeta.SearchLogDbm;
    import org.codelibs.fess.opensearch.log.cbean.SearchLogCB;
    import org.codelibs.fess.opensearch.log.cbean.ca.SearchLogCA;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            log.debug("Test setup completed");
        }
    
        @AfterEach
        void cleanupTest() throws Exception {
            // Simple cleanup between tests
            try {
                System.gc();
                Thread.sleep(100);
                log.debug("Test cleanup completed");
            } catch (Exception e) {
                log.warn("Failed to cleanup test", e);
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

    import okhttp3.recipes.kt.WireSharkListenerFactory.WireSharkKeyLoggerListener.Launch.Gui
    import okio.ByteString.Companion.toByteString
    
    /**
     * Logs SSL keys to a log file, allowing Wireshark to decode traffic and be examined with http2
     * filter. The approach is to hook into JSSE log events for the messages between client and server
     * during handshake, and then take the agreed masterSecret from private fields of the session.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. mvnw

        # splitting rules.
        tr -s '\r\n' ' ' <"$1"
      fi
    }
    
    log() {
      if [ "$MVNW_VERBOSE" = true ]; then
        printf '%s\n' "$1"
      fi
    }
    
    BASE_DIR=$(find_maven_basedir "$(dirname "$0")")
    if [ -z "$BASE_DIR" ]; then
      exit 1
    fi
    
    MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
    export MAVEN_PROJECTBASEDIR
    log "$MAVEN_PROJECTBASEDIR"
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Job Log.
     *
     */
    public class AdminJoblogAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminJoblogAction() {
            super();
        }
    
        /** The role name for job log administration. */
        public static final String ROLE = "admin-joblog";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/transport/Transport.java

                }
            } catch (final IOException ioe) {
                if (LogStream.level > 2) {
                    ioe.printStackTrace(log);
                }
                try {
                    disconnect(true);
                } catch (final IOException ioe2) {
                    ioe2.printStackTrace(log);
                }
                throw ioe;
            } catch (final InterruptedException ie) {
                throw new TransportException(ie);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                    log.warn("File handle was not properly closed, performing emergency cleanup: " + this);
                    if (this.creationBacktrace != null) {
                        log.warn(Arrays.toString(this.creationBacktrace));
                    }
                    emergencyCloseHandle();
                }
            } catch (Exception e) {
                log.error("Error during file handle finalization", e);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.4K bytes
    - Viewed (1)
Back to top