- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 116 for Install (0.04 sec)
-
src/main/assemblies/extension/kibana/README.md
kibana 7 settings for fess ===== Providing example of kibana settings file for monitoring search logs of fess. ## Install 1. Install and launch Fess. 1. Install and launch kibana. 1. Go to kibana home [http://localhost:5601/](http://localhost:5601/). 1. Click **Management**. 1. Click **Index Patterns**. 1. Click **Create index pattern** button 1. Input "fess\_log\*" to the textbox of **index pattern**. 1. Click **Next step**.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 1.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
mockThemeHelper.install(artifact); // Some environments may handle invalid zip gracefully assertTrue(true); } catch (Exception e) { // Should throw ThemeException or ZipException assertTrue(e instanceof ThemeException || e.getMessage().contains("zip") || e.getMessage().contains("install") || e.getMessage().contains("format"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
deps.xml
<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" /> <property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" /> <target name="install.jars"> <mkdir dir="${target.dir}" /> <delete dir="${webinf.dir}/lib" /> <mkdir dir="${webinf.dir}/lib" /> <delete dir="${crawler.dir}/lib" /> <mkdir dir="${crawler.dir}/lib" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun May 18 04:53:52 UTC 2025 - 2.5K bytes - Viewed (0) -
regression-test/README.md
Regression Test =============== A gradle module for running Regression tests on a device, emulator or JVM. 1. Add an Emulator named `pixel5`, if you don't already have one ``` $ sdkmanager --install "system-images;android-29;google_apis;x86" $ echo "no" | avdmanager --verbose create avd --force --name "pixel5" --device "pixel" --package "system-images;android-29;google_apis;x86" --tag "google_apis" --abi "x86" ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java
*/ public class InstallBody { /** Name of the plugin to install (required, max 100 characters) */ @Required @Size(max = 100) public String name; /** * Default constructor. */ public InstallBody() { // Default constructor } /** Version of the plugin to install (required, max 100 characters) */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Installs an artifact based on its type. * * @param artifact the artifact to install */ public void installArtifact(final Artifact artifact) { switch (artifact.getType()) { case THEME: install(artifact); ComponentUtil.getThemeHelper().install(artifact); break; default:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
util/gradle_integration_tests.sh
#!/bin/bash set -eu ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true ./mvnw clean install --projects '!guava-testlib,!guava-tests,!guava-bom' -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -f android # We run this separately so that its change to the default toolchain doesn't affect anything else.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 02 19:24:12 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.plugin_type=Type labels.plugin_name=Name labels.plugin_version=Version labels.plugin_delete=Delete labels.plugin_install=Install labels.plugin_install_title=Install Plugin labels.plugin_jar_file=Jar File labels.plugin_local_install=Local labels.plugin_remote_install=Remote labels.crud_button_install=Install labels.storage_configuration=Storage labels.storage_name=Name labels.storage_size=Size
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
class GradleWrapperMain { public static void main(String[]); } org/gradle/wrapper/Install$1.class package org.gradle.wrapper; public final class Install$1 implements java.util.concurrent.Callable { public void Install$1(java.io.File, java.io.File, java.net.URI, Install, WrapperConfiguration); public final Object call(); } org/gradle/wrapper/Install$InstallCheck.class package org.gradle.wrapper; public final class Install$InstallCheck { public final java.io.File gradleHome; public final String failureMessage;...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 44.4K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
} } public void test_installArtifact_default() { PluginHelper testHelper = new PluginHelper() { @Override protected void install(Artifact artifact) { // Mock install method } }; Artifact artifact = new Artifact("fess-ds-test", "1.0.0", "http://test.com/test.jar"); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0)