Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for AsService (0.07 sec)

  1. postrm

    env.file}" L61: if [ -f "$FESS_ENV_FILE" ]; then L62: . "$FESS_ENV_FILE" L63: fi L64:fi L65: L66:if [ "$REMOVE_SERVICE" = "true" ]; then L67: if command -v systemctl >/dev/null; then L68: systemctl --no-reload disable fess.service > /dev/null 2>&1 || true L69: fi L70: L71: if command -v chkconfig >/dev/null; then L72: chkconfig --del fess 2> /dev/null || true L73: fi L74: L75: if command -v update-rc.d >/dev/null; then L76: update-rc.d fess remove...
    github.com/codelibs/fess/src/packaging/common/s...
    Thu Dec 10 01:24:02 UTC 2015
      2.2K bytes
  2. FavoriteLogService.java

    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.app.service; L17: L18:import java.util.ArrayList; L19:import java.util.Collections; L20:import java.util.List; L21:import java.util.function.BiConsumer; L22: L23:import org.codelibs.fess.es.log.exbhv.FavoriteLogBhv; L24:import org.codelibs.fess.es.log.exbhv.UserInfoBhv;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.9K bytes
  3. BoostDocumentRuleService.java

    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.app.service; L17: L18:import java.util.List; L19: L20:import org.codelibs.core.beans.util.BeanUtil; L21:import org.codelibs.core.lang.StringUtil; L22:import org.codelibs.fess.Constants; L23:import org.codelibs.fess.app.pager.BoostDocPager; L24:import org.cod...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.3K bytes
  4. RequestHeaderService.java

    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.app.service; L17: L18:import java.util.List; L19: L20:import org.codelibs.core.beans.util.BeanUtil; L21:import org.codelibs.fess.Constants; L22:import org.codelibs.fess.app.pager.ReqHeaderPager; L23:import org.codelibs.fess.es.config.cbean.RequestHeaderCB; L24:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.2K bytes
  5. WebAuthenticationService.java

    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.app.service; L17: L18:import java.util.List; L19: L20:import org.codelibs.core.beans.util.BeanUtil; L21:import org.codelibs.fess.Constants; L22:import org.codelibs.fess.app.pager.WebAuthPager; L23:import org.codelibs.fess.es.config.cbean.WebAuthenticationCB;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.5K bytes
  6. PathMappingService.java

    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.app.service; L17: L18:import java.util.Collection; L19:import java.util.List; L20: L21:import org.codelibs.core.beans.util.BeanUtil; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.Constants; L24:import org.codelibs.fess.app.pager.PathMapPager;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.7K bytes
  7. UserInfoService.java

    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.app.service; L17: L18:import org.codelibs.fess.es.log.exbhv.UserInfoBhv; L19:import org.codelibs.fess.helper.SystemHelper; L20: L21:import jakarta.annotation.Resource; L22: L23:public class UserInfoService { L24: L25: @Resource L26: private UserInfoBhv...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.1K bytes
  8. ApiAdminJoblogAction.java

    L18:import java.util.List; L19:import java.util.stream.Collectors; L20: L21:import org.apache.logging.log4j.LogManager; L22:import org.apache.logging.log4j.Logger; L23:import org.codelibs.fess.app.pager.JobLogPager; L24:import org.codelibs.fess.app.service.JobLogService; L25:import org.codelibs.fess.app.web.api.ApiResult; L26:import org.codelibs.fess.app.web.api.ApiResult.ApiLogResponse; L27:import org.codelibs.fess.app.web.api.ApiResult.ApiResponse; L28:import org.codelibs.fess.app.web.api.ApiResult.Status;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.1K bytes
  9. FessAppService.java

    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.app.service; L17: L18:public abstract class FessAppService { L19: L20: protected static String wrapQuery(final String query) { L21: final StringBuilder sb = new StringBuilder(); L22: if (!query.startsWith("*")) { L23: sb.append("*");...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1K bytes
  10. CrawlingConfigHelper.java

    org.apache.logging.log4j.LogManager; L27:import org.apache.logging.log4j.Logger; L28:import org.codelibs.core.lang.StringUtil; L29:import org.codelibs.fess.Constants; L30:import org.codelibs.fess.app.service.DataConfigService; L31:import org.codelibs.fess.app.service.FileConfigService; L32:import org.codelibs.fess.app.service.WebConfigService; L33:import org.codelibs.fess.es.config.exbhv.DataConfigBhv; L34:import org.codelibs.fess.es.config.exbhv.FailureUrlBhv; L35:import org.codelibs.fess.es.config.exbhv.FileConfigBhv;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      11.7K bytes
Back to top