- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 268 for tomcat (0.16 sec)
-
src/main/assemblies/files/tomcat_config.properties
# ---------------------------------------------------------- # Tomcat # ------ tomcat.URIEncoding = UTF-8 tomcat.useBodyEncodingForURI = true #tomcat.secure=false #tomcat.scheme=http #tomcat.bindAddress=127.0.0.1 #tomcat.proxyPort=
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Aug 11 21:43:37 UTC 2018 - 639 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) -
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/assemblies/common-bin.xml
<!-- lib --> <fileSet> <directory>${project.build.directory}/tomcat-lib</directory> <outputDirectory>fess-${project.version}/lib/classes</outputDirectory> </fileSet> <fileSet> <directory>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess/</directory> <includes> <include>FessBoot**</include> <include>tomcat/**</include> </includes>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K 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/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) -
android/guava/src/com/google/common/collect/FluentIterable.java
* iterator supports it. * * <p><b>{@code Stream} equivalent:</b> use nested calls to {@link Stream#concat}, or see the * advice in {@link #concat(Iterable...)}. * * @since 20.0 */ public static <T extends @Nullable Object> FluentIterable<T> concat( Iterable<? extends T> a, Iterable<? extends T> b, Iterable<? extends T> c) { return concatNoDefensiveCopy(a, b, c); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 24 13:42:31 UTC 2024 - 35.7K bytes - Viewed (0)