Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for prepareGetIndex (0.12 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

            }
        }
    
        public void removeDisableIndices() {
            final GetIndexResponse response =
                    client.admin().indices().prepareGetIndex().addIndices("*").execute().actionGet(suggestSettings.getIndicesTimeout());
            Stream.of(response.getIndices()).filter(s -> {
                if (!isSuggestIndex(s)) {
                    return false;
                }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            assertEquals(1, response3.getNum());
    
            GetIndexResponse getIndexResponse = runner.client().admin().indices().prepareGetIndex().execute().actionGet();
            int count = 0;
            for (String index : getIndexResponse.getIndices()) {
                if (index.startsWith(suggester.getIndex())) {
                    count++;
                }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final GetIndexResponse response1 =
                    client.admin().indices().prepareGetIndex().addIndices(updateAlias).execute().actionGet(fessConfig.getIndexIndicesTimeout());
            final String[] updateIndices = response1.indices();
            final GetIndexResponse response2 =
                    client.admin().indices().prepareGetIndex().addIndices(searchAlias).execute().actionGet(fessConfig.getIndexIndicesTimeout());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top