- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 132 for unes (0.03 seconds)
-
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
return redirect(ErrorAction.class); } } /** * Checks if the given URL represents a file system path. * Determines if the URL uses file system protocols that may require * special handling for content serving. * * @param url the URL to check * @return true if the URL is a file system path, false otherwise */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 9K bytes - Click Count (0) -
architecture/standards/0008-use-nullaway.md
# ADR-0008 - Use NullAway for null checking ## Status - ACCEPTED on 2025-08-06 ## Context Our codebase uses `null` extensively to represent an absence of value or optionality of the argument. We utilize nullness annotations in Java code and somewhat rely on IDE warnings to guide us. However, the Java code we have is not fully annotated, which causes several consequences: * IDE warnings can be misleading
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
architecture/standards/README.md
We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/). For now we just have this global repository of ADRs. If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs. Our aim is to keep the process lightweight and approachable.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 21 06:30:44 GMT 2024 - 546 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
* currently supporting Kryo and JavaBin serialization formats. The serializer * type is determined by the crawler data serializer configuration. * </p> * <p> * The class is thread-safe and uses ThreadLocal to maintain Kryo instances * per thread to avoid synchronization overhead. * </p> * */ public class DataSerializer { /** Logger for this class. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:54:09 GMT 2026 - 10.5K bytes - Click Count (3) -
.github/workflows/notify-on-rc-for-manual-test.yml
- 'v*.*.*-RC1' permissions: {} jobs: send-slack-notification: runs-on: ubuntu-latest steps: - name: Send Slack notification about new RCs for manual testing id: slack uses: slackapi/slack-github-action@v3.0.1 with: webhook: ${{ secrets.IDE_EXPERIENCE_TEAM_SLACK_WEBHOOK_URL }} webhook-type: incoming-webhook payload: |Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 22:04:33 GMT 2026 - 912 bytes - Click Count (0) -
.github/workflows/feedback.yml
steps: # Feedback loop: ask for something on PR/Issue and close if not provided or return to the queue on update. # https://github.com/gradle/issue-management-action/blob/main/src/feedback.tsCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jun 17 13:58:59 GMT 2024 - 482 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
} /** * Block an IP address for the specified duration. * Note: The duration is ignored as the cache uses the configured block duration. * @param ip the IP address to block * @param durationMs the duration in milliseconds (ignored, uses configured value) */ public void blockIp(final String ip, final long durationMs) { blockedIps.put(ip, Boolean.TRUE);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
src/main/webapp/js/admin/popper.min.js.map
data.placement\n );\n\n data.offsets.popper.position = this.options.positionFixed\n ? 'fixed'\n : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n","/**\n * Helper used to know if the given modifier is enabled.\n...
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) -
.github/hub_scripts/pr_ci.sh
# See the License for the specific language governing permissions and # limitations under the License. # # # Simple shell script for launching CI jobs using the @bot-gradle GitHub comment listener. # Uses the [hub](https://hub.github.com/) CLI command to issue API requests to GitHub. # This script must be executed from the branch associated with the PR to issue the command on. # PR_NUMBER=$(hub pr show -f '%I')
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 22 15:25:21 GMT 2021 - 1K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
# Adding a New Language to Fess This guide explains how to add internationalization (i18n) support for a new language in Fess. ## Overview Fess uses a two-tier language support system: 1. **Full UI Translation** (13 languages): Complete user interface translation with label and message files 2. **Search/Analysis Support** (40+ languages): Language-specific text analysis for search indexing
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1)