Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for indice (0.04 sec)

  1. src/main/resources/fess_message_pt_BR.properties

    errors.crud_failed_to_delete_crud_table=Não foi possível excluir os dados. ({0})
    errors.crud_could_not_find_crud_table = Dados {0} não encontrados.
    errors.could_not_find_backup_index=Não foi possível encontrar o índice de backup.
    errors.no_user_for_changing_password=A senha atual está incorreta.
    errors.failed_to_change_password=Não foi possível alterar a senha.
    errors.unknown_version_for_upgrade=Informações de versão desconhecidas.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_it.properties

    labels.number_of_shards_for_doc=Numero di shard
    labels.auto_expand_replicas_for_doc=Numero massimo di repliche
    labels.clear_crawler_index=Indice crawler
    labels.clear_crawler_index_button=Elimina indice crawler
    labels.diagnostic_logs=Diagnostica
    labels.download_diagnostic_logs_button=Scarica log
    labels.reload_doc_index=Ricarica indice documenti
    labels.reload_doc_index_button=Ricarica
    labels.plugin_title=Plugin
    labels.plugin_list_name=Lista plugin
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_es.properties

    errors.crud_failed_to_delete_crud_table=No se pudieron eliminar los datos. ({0})
    errors.crud_could_not_find_crud_table = No se encontraron los datos {0}.
    errors.could_not_find_backup_index=No se encontró el índice de copia de seguridad.
    errors.no_user_for_changing_password=La contraseña actual es incorrecta.
    errors.failed_to_change_password=No se pudo cambiar la contraseña.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_es.properties

    labels.auto_expand_replicas_for_doc=Número máximo de réplicas
    labels.clear_crawler_index=Índice del rastreador
    labels.clear_crawler_index_button=Eliminar índice de rastreo
    labels.diagnostic_logs=Diagnóstico
    labels.download_diagnostic_logs_button=Descargar registros
    labels.reload_doc_index=Recargar índice de documentos
    labels.reload_doc_index_button=Recargar
    labels.plugin_title=Plugin
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_pt_BR.properties

    labels.auto_expand_replicas_for_doc=Número máximo de réplicas
    labels.clear_crawler_index=Índice do rastreador
    labels.clear_crawler_index_button=Excluir índice de rastreamento
    labels.diagnostic_logs=Diagnóstico
    labels.download_diagnostic_logs_button=Baixar logs
    labels.reload_doc_index=Recarregar índice de documentos
    labels.reload_doc_index_button=Recarregar
    labels.plugin_title=Plugin
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

    import org.opensearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
    import org.opensearch.action.admin.indices.create.CreateIndexResponse;
    import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
    import org.opensearch.action.admin.indices.flush.FlushResponse;
    import org.opensearch.action.admin.indices.get.GetIndexResponse;
    import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/Graphs.java

       */
      public static boolean hasCycle(Network<?, ?> network) {
        // In a directed graph, parallel edges cannot introduce a cycle in an acyclic graph.
        // However, in an undirected graph, any parallel edge induces a cycle in the graph.
        if (!network.isDirected()
            && network.allowsParallelEdges()
            && network.edges().size() > network.asGraph().edges().size()) {
          return true;
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/graph/Graphs.java

       */
      public static boolean hasCycle(Network<?, ?> network) {
        // In a directed graph, parallel edges cannot introduce a cycle in an acyclic graph.
        // However, in an undirected graph, any parallel edge induces a cycle in the graph.
        if (!network.isDirected()
            && network.allowsParallelEdges()
            && network.edges().size() > network.asGraph().edges().size()) {
          return true;
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

              localDelegate.execute(this);
            }
          } finally {
            // Important to null this out here - if we did *not* execute inline, we might still
            // run() on the same thread that called execute() - such as in a thread pool, and think
            // that it was happening inline. As a side benefit, avoids holding on to the Thread object
            // longer than necessary.
            submitting = null;
          }
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                final String docIndex = fessConfig.getIndexDocumentUpdateIndex();
                searchEngineClient.admin().indices().prepareClose(docIndex).execute(ActionListener.wrap(res -> {
                    logger.info("Close {}", docIndex);
                    searchEngineClient.admin()
                            .indices()
                            .prepareOpen(docIndex)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top