Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lockfile (2.96 sec)

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

        String LOGGING_SEARCH_DOCS_FIELDS = "logging.search.docs.fields";
    
        /** The key of the configuration. e.g. true */
        String LOGGING_SEARCH_USE_LOGFILE = "logging.search.use.logfile";
    
        /** The key of the configuration. e.g. org.codelibs,org.dbflute,org.lastaflute */
        String LOGGING_APP_PACKAGES = "logging.app.packages";
    
        /** The key of the configuration. e.g. 10000 */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    "passed.txt",
                    pom.getValue("build/plugins[@artifactId='maven-it-plugin-log-file']/configuration/logFile"));
        }
    
        @Test
        void testDefaultPluginsExecutionContributedByPackagingExecuteBeforeUserDefinedExecutions() throws Exception {
            PomTestWrapper pom = buildPom("plugin-exec-order-and-default-exec");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

            ArtifactRepository localRepo = request.getLocalRepository();
    
            File localFile = new File(localRepo.getBasedir(), localRepo.pathOf(artifact));
    
            artifact.setFile(localFile);
    
            if (!localFile.exists()) {
                if (request.getRemoteRepositories().isEmpty()) {
                    throw new IOException(localFile + " does not exist and no remote repositories are configured");
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

        }
    
        /**
         * @return Returns the local file.
         */
        public File getLocalFile() {
            return localFile;
        }
    
        /**
         * @param localFile The local file to set.
         */
        public void setLocalFile(File localFile) {
            this.localFile = localFile;
        }
    
        public long getTransferredBytes() {
            return transferredBytes;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

        }
    
        public void test_getLogFilePath() {
            final File logFile = new File(systemHelper.getLogFilePath());
            assertEquals("logs", logFile.getName());
            assertEquals("target", logFile.getParentFile().getName());
            try {
                System.setProperty("fess.log.path", "logpath");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
Back to top