Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 331 for Log4j (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/OsddHelper.java

     */
    package org.codelibs.fess.helper;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

     */
    /**
     * @author Keiichi Watanabe
     * @author shinsuke
     */
    package org.codelibs.fess.app.web.profile;
    
    import javax.annotation.Resource;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.service.UserService;
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.codelibs.fess.app.web.base.login.LocalUserCredential;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/InputStreamThread.java

    import java.io.InputStreamReader;
    import java.nio.charset.Charset;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.function.Consumer;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    
    public class InputStreamThread extends Thread {
        private static final Logger logger = LogManager.getLogger(InputStreamThread.class);
    
        private final BufferedReader br;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/build.gradle.kts

        implementation(project(":worker-main"))
    
        implementation(libs.guava)
    
        compileOnly(libs.zinc) {
            // Because not needed and was vulnerable
            exclude(module="log4j-core")
            exclude(module="log4j-api")
        }
    
        testImplementation(project(":base-services-groovy"))
        testImplementation(project(":files"))
        testImplementation(project(":resources"))
        testImplementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/war/src/main/java/org/gradle/sample/SimpleGreeter.java

    package org.gradle.sample;
    
    import org.apache.log4j.LogManager;
    
    public class SimpleGreeter {
        public String getGreeting() throws Exception {
            LogManager.getRootLogger().info("generating greeting.");
            return "Hello world!";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 249 bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/micromailer/pom.xml

            </exclusion>
            <exclusion>
              <groupId>commons-logging</groupId>
              <artifactId>commons-logging-api</artifactId>
            </exclusion>
            <exclusion>
              <groupId>log4j</groupId>
              <artifactId>log4j</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
    
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-utils</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SambaHelper.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jcifs.SID;
    
    public class SambaHelper {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

     */
    package org.codelibs.fess.job;
    
    import java.util.Map;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.es.client.SearchEngineClient;
    import org.codelibs.fess.helper.LabelTypeHelper;
    import org.codelibs.fess.helper.LanguageHelper;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GrettySmokeTest.groovy

                    id "war"
                    id "org.gretty" version "${grettyVersion}"
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
                    implementation group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
                }
    
                gretty {
                    contextPath = 'quickstart'
    
                    httpPort = new ServerSocket(0).withCloseable { socket -> socket.getLocalPort() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    1.0 Created-By: Apache Ant 1.5.1 Extension-Name: org.apache.commons.logging Specification-Vendor: Apache Software Foundation Specification-Version: 1.0 Implementation-Vendor: Apache Software Foundation Implementation-Version: 1.0.3 Class-Path: log4j.jar log4j-core.jar org/apache/commons/logging/impl/Jdk14Logger.class package org.apache.commons.logging.impl; public final synchronized class Jdk14Logger implements org.apache.commons.logging.Log { protected java.util.logging.Logger logger; public void...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
Back to top