Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for engines (0.06 sec)

  1. ApiAdminStatsAction.java

    JsonResponse<ApiResult> index() { L58: final HashMap<String, Object> stats = new HashMap<>(); L59: stats.put("jvm", getJvmObj()); L60: stats.put("os", getOsObj()); L61: stats.put("process", getProcessObj()); L62: stats.put("engine", getEngineObj()); L63: stats.put("fs", getFsObj()); L64: return asJson(new ApiStatsResponse().stats(stats).status(ApiResult.Status.OK).result()); L65: } L66: L67: private FsObj[] getFsObj() { L68: return Arrays.stream(...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12.1K bytes
  2. SearchEngineApiManager.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.api.engine; L17: L18:import java.io.IOException; L19:import java.io.InputStream; L20:import java.io.OutputStream; L21:import java.nio.file.Files; L22:import java.nio.file.Path; L23:import java.util.Locale; L24:import java.util.UUID; L25: L26:import org.apac...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  3. AdminDashboardAction.java

    License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.dashboard; L17: L18:import org.codelibs.fess.annotation.Secured; L19:import org.codelibs.fess.api.engine.SearchEngineApiManager; L20:import org.codelibs.fess.app.web.base.FessAdminAction; L21:import org.codelibs.fess.util.RenderDataUtil; L22:import org.lastaflute.web.Execute; L23:import org.lastaflute.web.response.HtmlResponse; L24:import org.lastaf...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.7K bytes
  4. FessConfig.java

    found, exception but basically no way) L1869: */ L1870: String getDomainTitle(); L1871: L1872: /** L1873: * Get the value for the key 'search_engine.type'. <br> L1874: * The value is, e.g. default <br> L1875: * comment: Search Engine L1876: * @return The value of found property. (NotNull: if not found, exception but basically no way) L1877: */ L1878: String getSearchEngineType(); L1879: L1880: /** L1881: * Get the value for the key 'search_engine.http.url'. <br>...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
Back to top