- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 128 for tiven (0.02 seconds)
-
src/test/java/org/codelibs/fess/it/admin/BadWordTests.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.it.admin; import static io.restassured.RestAssured.given; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.it.CrudTestBase;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/ElevateWordTests.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.it.admin; import static io.restassured.RestAssured.given; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.it.CrudTestBase;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java
return m.lookingAt(); } public String region() { return input.substring(markPos, pos); } /** * Moves the position to the next instance of the given character, or the end of the input if not found. */ public void find(char c) { int cpos = pos; while (cpos < input.length()) { if (input.charAt(cpos) == c) { break;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* @return array of file protocol strings with colon suffix (e.g., "file:", "ftp:") */ public String[] getFileProtocols() { return fileProtocols; } /** * Checks if the given URL uses a valid web protocol. * * @param url the URL to validate * @return true if the URL starts with a supported web protocol, false otherwise */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
} /** * Inserts a login record for the given member. * Currently this method does nothing. * * @param member the member to insert a login record for */ protected void insertLogin(final Object member) { // nothing } /** * Checks if the current user has permission to access the given resource.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
} protected static Response deleteMethod(final String path) { return given().contentType("application/json").header("Authorization", getTestToken()).delete(path); } protected static void deleteDocuments(final String queryString) { List<String> docIds = new ArrayList<>(); Response response = given().contentType("application/json") .param("scroll", "1m")Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.6K bytes - Click Count (0) -
src/main/webapp/js/admin/popper.min.js.map
scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n","/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nexport default function getBordersSize(styles, axis) {\n const sideA = axis === 'x' ? 'Left' : 'Top';\n const...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 120.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
public interface ThumbnailGenerator { /** * Gets the name of this thumbnail generator. * @return The generator name. */ String getName(); /** * Generates a thumbnail for the given thumbnail ID and saves it to the output file. * * @param thumbnailId the unique identifier for the thumbnail * @param outputFile the file where the generated thumbnail will be savedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
/** * Default constructor for ThemeHelper. */ public ThemeHelper() { // Default constructor } /** * Installs a theme from the given artifact. * Extracts theme files from the JAR and deploys them to appropriate directories. * * @param artifact the theme artifact to install * @throws ThemeException if installation fails */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.1K bytes - Click Count (0)