Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for heedless (0.23 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String APP_EXTENSION_NAMES = "app.extension.names";
    
        /** The key of the configuration. e.g.  */
        String APP_AUDIT_LOG_FORMAT = "app.audit.log.format";
    
        /** The key of the configuration. e.g. -Djava.awt.headless=true<br>
         * -Dfile.encoding=UTF-8<br>
         * -Djna.nosys=true<br>
         * -Djdk.io.permissionsUseCanonicalPath=true<br>
         * -Dhttp.maxConnections=20<br>
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java

        private final List<EventSpy> eventSpies;
    
        @Inject
        public EventSpyDispatcher(List<EventSpy> eventSpies) {
            // make copy to get rid of needless overhead for dynamic lookups
            this.eventSpies = new ArrayList<>(eventSpies);
        }
    
        public ExecutionListener chainListener(ExecutionListener listener) {
            if (eventSpies.isEmpty()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            }
        }
    
        private String getMessage(String message, Throwable exception) {
            String fullMessage = (message != null) ? message : "";
    
            // To break out of possible endless loop when getCause returns "this"
            for (Throwable t = exception; t != null && t != t.getCause(); t = t.getCause()) {
                String exceptionMessage = t.getMessage();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
Back to top