- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 35 for maks (0.03 seconds)
-
CONTRIBUTING.md
> and you can rely on it after doing initial sanity check and targeted local testing. ### Copyright and License When updating/modifying a file, please do not make changes to the copyright header. When creating a new file, please make sure to add a header as defined below. #### Required Files for Copyright Headers: - Source code files (e.g., `.java`, `.kt`, `.groovy`).
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
LICENSE
this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by theirCreated: Wed Apr 01 00:11:11 GMT 2026 - Last Modified: Thu Feb 20 19:53:57 GMT 2020 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
TermQuery termQuery = new TermQuery(new Term("field", "value")); boolQueryBuilder.add(termQuery, BooleanClause.Occur.MUST_NOT); // Add a MUST clause to make the query valid TermQuery termQuery2 = new TermQuery(new Term("field2", "value2")); boolQueryBuilder.add(termQuery2, BooleanClause.Occur.MUST); BooleanQuery booleanQuery = boolQueryBuilder.build();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.4K bytes - Click Count (0) -
.idea/inspectionProfiles/Gradle.xml
</replaceConfiguration> <replaceConfiguration name="Treat some Guava Collection factory methods as Deprecated" uuid="82f9f9ab-9c3b-367f-99ad-40841dc13819" text="com.google.common.collect.Maps.newConcurrentMap()" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" replacement="new java.util.concurrent.ConcurrentHashMap<>()">Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jun 26 21:49:47 GMT 2024 - 15.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
mixedMap.put(123, 456); mixedMap.put(null, "test"); assertEquals(228L, MemoryUtil.sizeOf(mixedMap)); // Nested maps Map<String, Map<String, String>> nestedMap = new HashMap<>(); nestedMap.put("outer", Maps.map("inner", "value").$()); assertEquals(183L, MemoryUtil.sizeOf(nestedMap)); } @Test public void test_sizeOf_customObjects() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12K bytes - Click Count (0) -
LICENSE
this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by theirCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 16:29:02 GMT 2026 - 9.9K bytes - Click Count (0) -
LICENSE
this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by theirCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue May 08 21:35:34 GMT 2018 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * This method implements lazy initialization with synchronization to ensure * the authenticator is only created once. It configures the authenticator * with the appropriate SPNEGO settings and marks initialization as complete. * * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
.useForm(DeleteForm.class); } /** * Retrieves all available artifacts from all plugin types. * * @return list of maps containing artifact information */ public static List<Map<String, String>> getAllAvailableArtifacts() { final PluginHelper pluginHelper = ComponentUtil.getPluginHelper();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} /** * Retrieves a list of files and directories from the storage system. * * @param prefix the path prefix to list objects under * @return list of file and directory information maps */ public static List<Map<String, Object>> getFileItems(final String prefix) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final List<Map<String, Object>> list = new ArrayList<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0)