Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for marama (0.03 sec)

  1. src/main/java/org/codelibs/fess/ingest/Ingester.java

         * Default implementation delegates to the basic process method.
         *
         * @param target the document data to process
         * @param params the data store parameters
         * @return the processed document data
         */
        public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
            return process(target);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/build.gradle.kts

    }
    
    dependencies {
      api(libs.squareup.okio)
      api(libs.squareup.kotlinPoet)
      testImplementation(libs.assertk)
      testImplementation(libs.junit.jupiter.api)
      testImplementation(libs.junit.jupiter.params)
    
      testImplementation(rootProject.libs.junit.jupiter.engine)
    }
    
    animalsniffer {
      isIgnoreFailures = true
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 370 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            log(valueMap);
        }
    
        /**
         * Print the log.
         * @param action The action.
         * @param user The user.
         * @param params The parameters.
         */
        public void print(final String action, final OptionalThing<FessUserBean> user, final Map<String, String> params) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

        //                                               Details
        //                                               -------
        /**
         * Show the details page.
         * @param dictId The dictionary ID.
         * @param crudMode The CRUD mode.
         * @param id The ID of the kuromoji item.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                }
    
            }).orElseGet(() -> null);
        }
    
        /**
         * Creates a login credential.
         * @param request The HTTP request.
         * @param response The HTTP response.
         * @param auth The SAML authentication.
         * @return The login credential.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

                this.allRecordCount = allRecordCount;
            }
    
            @Override
            protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) {
                int start = params.getStartPosition();
                int size = params.getPageSize();
                SearchResultBuilder builder = SearchResult.create();
                for (int i = start; i < start + size && i < allRecordCount; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

        //                                               -------
        /**
         * Displays the details view for a specific synonym item.
         *
         * @param dictId the dictionary ID
         * @param crudMode the CRUD operation mode
         * @param id the synonym item ID
         * @return HTML response for the synonym item details
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  8. gradle/libs.versions.toml

    junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "org-junit-jupiter" }
    junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "org-junit-jupiter" }
    #noinspection UnusedVersionCatalogEntry
    junit-platform-console = { module = "org.junit.platform:junit-platform-console", version.ref = "junit-platform" }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. okhttp/build.gradle.kts

            implementation(libs.kotlin.test.common)
            implementation(libs.kotlin.test.junit)
            implementation(libs.junit)
            implementation(libs.junit.jupiter.api)
            implementation(libs.junit.jupiter.params)
          }
        }
    
        androidMain {
          dependsOn(commonJvmAndroid)
          dependencies {
            compileOnly(libs.bouncycastle.bcprov)
            compileOnly(libs.bouncycastle.bctls)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    return null; // Return null for this test
                }
            };
    
            queryHelper.addQueryRescorer(mockRescorer);
    
            java.util.Map<String, Object> params = new java.util.HashMap<>();
            org.opensearch.search.rescore.RescorerBuilder<?>[] rescorers = queryHelper.getRescorers(params);
    
            assertNotNull(rescorers);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
Back to top