Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/main/resources/fess_config.properties

    logging.search.docs.enabled=true
    logging.search.docs.fields=filetype,created,click_count,title,doc_id,url,score,site,filename,host,digest,boost,mimetype,favorite_count,_id,lang,last_modified,content_length,timestamp
    logging.search.use.logfile=true
    logging.app.packages=org.codelibs,org.dbflute,org.lastaflute
    
    # ========================================================================================
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  3. 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)
  4. docs/ko/docs/deployment/docker.md

    10. `app` 디렉터리를 `/code` 디렉터리로 복사합니다.
    
    11. `uvicorn` 커맨드를 실행하여, `app.main`에서 불러온 `app` 객체를 사용하도록 합니다.
    
    !!! tip "팁"
        버블 숫자를 클릭해 각 줄이 하는 일을 알아볼 수 있습니다.
    
    **도커 스테이지**란 `Dockefile`의 일부로서 나중에 사용하기 위한 파일들을 생성하기 위한 **일시적인 컨테이너 이미지**로 작동합니다.
    
    첫 스테이지는 오직 **Poetry를 설치**하고 Poetry의 `pyproject.toml` 파일로부터 프로젝트 의존성을 위한 **`requirements.txt`를 생성**하기 위해 사용됩니다.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  5. 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)
Back to top