- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for atomcat (0.1 sec)
-
src/packaging/deb/init.d/fess
# # /etc/init.d/fess -- startup script for Fess # # Written by Miquel van Smoorenburg <******@****.***>. # Modified for Debian GNU/Linux by Ian Murdock <******@****.***>. # Modified for Tomcat by Stefan Gybas <******@****.***>. # Modified for Tomcat6 by Thierry Carrez <******@****.***>. # Additional improvements by Jason Brittain <******@****.***>. # Modified by Nicolas Huray for Fess <******@****.***>. #
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
import org.apache.catalina.startup.Tomcat; import org.apache.tomcat.util.http.CookieProcessorBase; import org.apache.tomcat.util.http.Rfc6265CookieProcessor; import org.apache.tomcat.util.net.SSLHostConfig; import org.apache.tomcat.util.net.SSLHostConfigCertificate; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.tomcat.valve.SuppressErrorReportValve; import org.codelibs.fess.tomcat.webresources.FessWebResourceRoot;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<root-XML localName="feed" namespaceURI="http://www.w3.org/2005/Atom"/> <glob pattern="*.atom"/> </mime-type> <mime-type type="application/atomcat+xml"> <glob pattern="*.atomcat"/> </mime-type> <mime-type type="application/atomicmail"/> <mime-type type="application/atomsvc+xml"> <glob pattern="*.atomsvc"/> </mime-type>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Sep 21 06:46:43 UTC 2023 - 298.5K bytes - Viewed (0) -
pom.xml
</dependency> <!-- Tomcat --> <dependency> <groupId>org.dbflute.tomcat</groupId> <artifactId>tomcat-boot</artifactId> <version>${tomcat.boot.version}</version> <!-- Disable scope at development on IDEA --> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.apache.tomcat</groupId> <artifactId>tomcat-el-api</artifactId> </exclusion>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
.gitignore
/src/main/webapp/WEB-INF/conf/*.properties /src/main/webapp/WEB-INF/db/*.lock.db /src/main/webapp/WEB-INF/logs/fess* /.settings/ .project .classpath *.iml .idea .vscode .DS_Store /plugins/ /modules/ /tomcat.8080/ dbflute_fess/output/doc/lastadoc-fess.html dbflute_fess/schema/project-lastadoc-fess.json src/main/resources/fess_indices/fess_config.access_token/access_token.bulk src/main/resources/ga_client_secrets.p12
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 1023 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValve.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.tomcat.valve; import org.apache.catalina.valves.ErrorReportValve; public class SuppressErrorReportValve extends ErrorReportValve { public SuppressErrorReportValve() { setShowReport(false);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 891 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.tomcat.webresources; import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.Manifest; import java.util.logging.Level; import java.util.logging.Logger; import org.apache.catalina.Context;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
| specific paths and repository locations which allow the build to work in the local environment. | | For example, if you have an integration testing plugin - like cactus - that needs to know where | your Tomcat instance is installed, you can provide a variable here such that the variable is | dereferenced during the build process to configure the cactus plugin. |
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 15:53:41 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.log.path=%FESS_HOME%\logs set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.log.level=warn set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dlasta.env=web set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dtomcat.config.path=tomcat_config.properties REM External opensearch cluster REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.search_engine.http_address=http://localhost:9200
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.2K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.sh
FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.log.path=$FESS_LOG_PATH" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.log.level=$FESS_LOG_LEVEL" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlasta.env=web" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dtomcat.config.path=tomcat_config.properties" if [ "x$FESS_CONF_PATH" != "x" ]; then FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfess.conf.path=$FESS_CONF_PATH" fi if [ "x$FESS_VAR_PATH" != "x" ]; then
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.7K bytes - Viewed (0)