- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 135 for federation (0.05 sec)
-
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
/** * View class for managing facet query configurations and their display. * This class handles the setup and organization of query facets for the search interface, * including automatic generation of file type facets and custom query mappings. */ public class FacetQueryView { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FacetQueryView.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
new File(tempDir, "WEB-INF/plugin").mkdirs(); thumbnailJob.numOfThreads(2); testProcessHelper.exitValue = 0; testProcessHelper.processOutput = "Thumbnail generation completed"; String result = thumbnailJob.execute(); assertNotNull(result); // The result should contain Session Id with the generated session ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
.gitignore
# Downloaded Kubernetes binary release /kubernetes/ # direnv .envrc files .envrc # Downloaded kubernetes binary release tar ball kubernetes.tar.gz # Phony test files used as part of coverage generation zz_generated_*_test.go # Just in time generated data in the source, should never be committed /test/e2e/generated/bindata.go
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.sh
# out. FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xms${FESS_MIN_MEM}" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmx${FESS_MAX_MEM}" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:MaxMetaspaceSize=256m -XX:CompressedClassSpaceSize=32m" # new generation if [ "x$FESS_HEAP_NEWSIZE" != "x" ]; then FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmn${FESS_HEAP_NEWSIZE}" fi # set to headless, just in case FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.awt.headless=true"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.7K bytes - Viewed (0) -
README.md
- **Pre-Authentication Integrity**: SMB 3.1.1 PAI for preventing downgrade attacks - **Automatic Detection**: Encryption automatically enabled when servers require it - **Secure Key Management**: Proper key derivation and nonce generation ### Core Features - **Per-context configuration**: No global state, each context encapsulates configuration - **Authentication**: NTLM, Kerberos, SPNEGO unified subsystem
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
CODE_OF_CONDUCT.md
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces and also applies when an individual is officially representing the community in public spaces.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Oct 17 06:18:13 UTC 2024 - 5K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
└── LeaseManager.java - Central lease management ``` #### 1.2 Implementation Tasks - [ ] Define lease state constants (SMB2_LEASE_READ, SMB2_LEASE_HANDLE, SMB2_LEASE_WRITE) - [ ] Implement lease key generation and management - [ ] Add lease context to Create request/response - [ ] Implement lease break notification handling - [ ] Modify SmbFile to support lease-based caching - [ ] Add lease upgrade/downgrade logic
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
REM out. set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xms%FESS_MIN_MEM% -Xmx%FESS_MAX_MEM% set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:MaxMetaspaceSize=256m -XX:CompressedClassSpaceSize=32m REM new generation if NOT "%FESS_HEAP_NEWSIZE%" == "" ( set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Xmn%FESS_HEAP_NEWSIZE% ) REM max direct memory if NOT "%FESS_DIRECT_SIZE%" == "" (
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
/** Helper for performing search operations and managing search requests. */ @Resource protected SearchHelper searchHelper; /** Manager for handling thumbnail generation and display. */ @Resource protected ThumbnailManager thumbnailManager; /** Helper for managing label types and label-based filtering. */ @Resource protected LabelTypeHelper labelTypeHelper;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* Uses caching to improve performance for repeated requests. * * @param searchRequestType the type of search request * @param seed the seed value for popular word generation * @param tags array of tags to filter results * @param roles array of roles to filter results * @param fields array of fields to search in * @param excludes array of words to exclude from results
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0)