- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 398 for basedir (0.06 sec)
-
src/main/java/org/codelibs/fess/job/PythonJob.java
try { final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile(); if (logger.isInfoEnabled()) { logger.info("Python: \nDirectory={}\nOptions={}", baseDir, cmdList); } final JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pb -> { pb.directory(baseDir); pb.redirectErrorStream(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava-testlib/pom.xml
<goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src</compileSourceRoot> </compileSourceRoots> <!-- JPMS needs access to the module sources to complete a modular Java build. We also need to override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
guava-testlib/pom.xml
<goals> <goal>compile</goal> </goals> <configuration> <release>9</release> <compileSourceRoots> <compileSourceRoot>${project.basedir}/src</compileSourceRoot> </compileSourceRoots> <!-- JPMS needs access to the module sources to complete a modular Java build. We also need to override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
logger.info("Created: {}", baseDir.getAbsolutePath()); } if (!baseDir.isDirectory()) { throw new FessSystemException("Not found: " + baseDir.getAbsolutePath()); } if (logger.isDebugEnabled()) { logger.debug("Thumbnail Directory: {}", baseDir.getAbsolutePath()); } thumbnailTaskQueue = new LinkedBlockingQueue<>(thumbnailTaskQueueSize);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
module.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="module" basedir="."> <property name="modules.dir" value="${basedir}/modules" /> <property name="target.dir" value="${basedir}/target/modules" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" /> <property name="maven.release.repo.url" value="https://maven.codelibs.org" /> <property name="opensearch.version" value="3.2.0" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.9K bytes - Viewed (0) -
dbflute.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="dbflute" basedir="."> <property name="mydbflute.dir" value="${basedir}/mydbflute" /> <property name="target.dir" value="${basedir}/target" /> <property name="branch.name" value="fess-15.2" /> <property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> <target name="mydbflute.check"> <condition property="mydbflute.exists">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:20:20 UTC 2025 - 999 bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/suggest/resources/log4j2.xml
<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" /> <Property name="backup.date.suffix" value="_%d{yyyyMMdd}" /> <Property name="backup.max.history" value="10" /> </Properties> <Appenders> <RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log" filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:05:30 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml
<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" /> <Property name="backup.date.suffix" value="_%d{yyyyMMdd}" /> <Property name="backup.max.history" value="10" /> </Properties> <Appenders> <RollingFile name="AppFile" fileName="${log.file.basedir}/${domain.name}.log" filePattern="${log.file.basedir}/${domain.name}${backup.date.suffix}-%i.log.gz">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:05:30 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
return jspItems; } private List<String> loadFileNameItems() { final File baseDir = new File(getServletContext().getRealPath("/")); final List<String> fileNameItems = new ArrayList<>(); final List<File> fileList = getAccessibleFileList(baseDir); final int length = baseDir.getAbsolutePath().length(); for (final File file : fileList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0)