- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 381 for onload (0.03 sec)
-
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); if (StringUtil.isNotBlank(options.propertiesPath)) { systemProperties.reload(options.propertiesPath); } else { try { final File propFile = ComponentUtil.getSystemHelper().createTempFile("thumbnail_", ".properties");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/DownloadForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.elevateword; /** * The download form for Elevate Word. * This form is used for downloading elevate word configurations from the admin interface. * */ public class DownloadForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 963 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/DownloadBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.dict.stemmeroverride; import org.codelibs.fess.app.web.admin.dict.stemmeroverride.DownloadForm; /** * Download body for stemmer override dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading stemmer override dictionaries via REST API. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/DownloadBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.dict.kuromoji; import org.codelibs.fess.app.web.admin.dict.kuromoji.DownloadForm; /** * Download body for Kuromoji dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading Kuromoji dictionaries via REST API. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.dict.protwords; import org.codelibs.fess.app.web.admin.dict.protwords.DownloadForm; /** * Download body for protected words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading protected words dictionaries via REST API. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/DownloadBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.dict.stopwords; import org.codelibs.fess.app.web.admin.dict.stopwords.DownloadForm; /** * Download body for stop words dictionary API operations. * This class extends the DownloadForm to provide request body handling * for downloading stop words dictionaries via REST API. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
public void test_relatedQueryMap_volatile() { // Test that the map is properly replaced when load() is called List<RelatedQuery> testData1 = new ArrayList<>(); testData1.add(createRelatedQuery("term1", new String[] { "query1" }, "")); mockBhv.setTestData(testData1); relatedQueryHelper.load(); String[] results = relatedQueryHelper.getRelatedQueries("term1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/PropertiesUtil.java
} /** * Wraps exception handling for {@link Properties#load(InputStream)}. * <p> * The input stream is not closed. * </p> * * @param props the property set (must not be {@literal null}) * @param in the input stream (must not be {@literal null}) */ public static void load(final Properties props, final InputStream in) { assertArgumentNotNull("props", props);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0) -
.github/workflows/maven.yml
ref: ${{ env.PARENT_BRANCH }} path: fess-parent - name: Install fess-parent run: | cd fess-parent mvn install -Dgpg.skip=true - name: Download Plugins with Maven run: mvn -B antrun:run --file pom.xml - name: Build with Maven run: mvn -B source:jar javadoc:jar package --file pom.xml - name: Run Fess
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:07:19 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java
import jakarta.validation.constraints.Size; /** * Form for plugin installation through the admin web interface. * This class represents the form data structure for installing a plugin * via file upload through the admin UI. */ public class InstallForm { /** Plugin identifier (required, max 400 characters) */ @Required @Size(max = 400) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)