Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 439 for pconstants (0.14 sec)

  1. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                jobHelper.setJobRuntime(null);
            }
        }
    
        protected void process(final LaJobRuntime runtime) {
            if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
                logger.warn("{} is empty.", Constants.SCHEDULED_JOB);
                return;
            }
            runtime.stopIfNeeds();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/SystemUtil.java

     */
    package org.codelibs.fess.util;
    
    import org.codelibs.fess.Constants;
    
    public class SystemUtil extends org.codelibs.core.lang.SystemUtil {
        private SystemUtil() {
        }
    
        @SuppressWarnings("deprecation")
        public static String getSearchEngineHttpAddress() {
            final String value = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
            if (value != null) {
                return value;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

            this.method = method;
        }
    
        public void setMethod(final String method) {
            if (Constants.GET_METHOD.equals(method)) {
                this.method = Method.GET;
            } else if (Constants.POST_METHOD.equals(method)) {
                this.method = Method.POST;
            } else if (Constants.HEAD_METHOD.equals(method)) {
                this.method = Method.HEAD;
            } else {
                this.method = Method.GET;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

        public void store(final JobLog jobLog) {
    
            jobLogBhv.insertOrUpdate(jobLog, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        public void delete(final JobLog jobLog) {
    
            jobLogBhv.delete(jobLog, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        protected void setupListCondition(final JobLogCB cb, final JobLogPager jobLogPager) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/UserService.java

                }).orElse(() -> {
                    throw new FessUserNotFoundException(username);
                });
            }
    
        }
    
        public void delete(final User user) {
            ComponentUtil.getAuthenticationManager().delete(user);
    
            userBhv.delete(user, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/ScheduledJob.java

            }
            return st;
        }
    
        public boolean isLoggingEnabled() {
            return Constants.T.equals(getJobLogging());
        }
    
        public boolean isCrawlerJob() {
            return Constants.T.equals(getCrawler());
        }
    
        public boolean isEnabled() {
            return Constants.T.equals(getAvailable());
        }
    
        public boolean isRunning() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. cni/pkg/scopes/scopes.go

    //  limitations under the License.
    
    package scopes
    
    import (
    	"istio.io/istio/cni/pkg/constants"
    	"istio.io/istio/pkg/log"
    )
    
    // Required to get global logging to work
    var (
    	CNIAgent  = log.RegisterScope(constants.CNIAgentLogScope, "CNI agent scope")
    	CNIPlugin = log.RegisterScope(constants.CNIPluginLogScope, "CNI plugin scope")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 894 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/config/config.go

    }
    
    var envoyUserVar = env.Register(constants.EnvoyUser, "istio-proxy", "Envoy proxy username")
    
    func (c *Config) FillConfigFromEnvironment() error {
    	// Fill in env-var only options
    	c.OwnerGroupsInclude = constants.OwnerGroupsInclude.Get()
    	c.OwnerGroupsExclude = constants.OwnerGroupsExclude.Get()
    
    	c.HostIPv4LoopbackCidr = constants.HostIPv4LoopbackCidr.Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                        factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_GENERAL_ENTITIES, false);
                        factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false);
                        factory.setFeature(Constants.XERCES_FEATURE_PREFIX + Constants.LOAD_EXTERNAL_DTD_FEATURE, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                    .filter(u -> !Constants.EMPTY_USER_ID.equals(u.getUserId())).map(u -> u.getUserId().toString()).orElse(StringUtil.EMPTY);
            if (StringUtil.isBlank(userCode)) {
                return null;
            }
    
            userCode = createUserCodeFromUserId(userCode);
            request.setAttribute(Constants.USER_CODE, userCode);
            deleteUserCodeFromCookie(request);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top