Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for mapper (0.03 seconds)

  1. module.xml

    			<param name="module.zip.version" value="${opensearch.version}" />
    		</antcall>
    		<!-- mapper-extras -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="mapper-extras" />
    			<param name="module.version" value="${opensearch.version}" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                if (response.getHttpStatusCode() == 200) {
                    final String content = response.getContentAsString();
                    final ObjectMapper mapper = new ObjectMapper();
                    final List<Map<String, String>> aliases = mapper.readValue(content, new TypeReference<List<Map<String, String>>>() {
                    });
                    int count = 0;
                    for (final Map<String, String> entry : aliases) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  3. CONTRIBUTING.md

    You can then use it as a Gradle Wrapper local distribution in a Gradle based project by using a `file:/` URL pointing to the built distribution:
    
        ./gradlew wrapper --gradle-distribution-url=file:/path/to/gradle-<version>-bin.zip
    
    To create a full distribution (includes sources and docs):
    
    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)
  4. .teamcity/scripts/CheckBadMerge.java

     *
     * When merging `releaseX` branch into `master`, we should only use the release note from the `master` branch,
     * but sometimes changes on release notes.md was brought to master and merged unnoticed,
     * e.g https://github.com/gradle/gradle/pull/25825
     *
     * This script is to check if there is any merge commit that brings changes from release branch to master.
     *
     * Usage (Java 11+ single-file source execution):
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp

    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
        <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include>
        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="crawl"/>
            <jsp:param name="menuType" value="dataConfig"/>
        </jsp:include>
        <main class="content-wrapper">
            <div class="content-header">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  6. build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts

            // gradle/gradle build tasks
            task.name in listOf(
                "updateInitPluginTemplateVersionFile",
                "resolveAllDependencies",
            ) -> true
    
            task.name.endsWith("Wrapper") -> true
            task.name in listOf("docs", "stageDocs", "serveDocs") -> true
            task.name.startsWith("userguide") -> true
            task.name == "samplesMultiPage" -> true
            task.typeSimpleName() in listOf(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 15:18:40 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    
    fun Project.scriptTemplateCommitIdViaFileSystemQuery(): Provider<String> = getBuildEnvironmentExtensionOrNull()?.scriptTemplateCommitId ?: objects.property(String::class.java)
    
    
    // gh-readonly-queue/master/pr-1234-5678abcdef -> master
    fun toMergeQueueBaseBranch(actualBranch: String): String = when {
        actualBranch.startsWith("gh-readonly-queue/") -> actualBranch.substringAfter("/").substringBefore("/")
        else -> actualBranch
    }
    
    /**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 25 08:51:12 GMT 2026
    - 4.9K bytes
    - Click Count (1)
  8. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            testClient.documentCount = 10;
            testClient.aliasCount = 2;
    
            testClient.reindexConfigIndices(false, allTargetPrefixes());
    
            // "fess" (DOC_INDEX) should never appear in created or reindexed indices
            for (final String index : testClient.createdIndices) {
                assertFalse(index.equals("fess"), "DOC_INDEX 'fess' should be skipped");
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

            assertNotNull(extraFieldNames);
            assertTrue(extraFieldNames.contains("custom_tags"), "Config-defined array field should appear even without doc data");
            assertTrue(extraFieldNames.contains("custom_publish_date"), "Config-defined date field should appear even without doc data");
    
            @SuppressWarnings("unchecked")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/IndexExportJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Job for exporting indexed search documents to the filesystem.
     * Each document is exported as a single file with URL structure mapped to directory structure.
     */
    public class IndexExportJob {
    
        private static final Logger logger = LogManager.getLogger(IndexExportJob.class);
    
        private static final int MAX_PATH_COMPONENT_LENGTH = 200;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top