Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,708 for unprotected (0.07 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

        /** queryPageSize */
        protected Integer queryPageSize;
    
        /** queryTime */
        protected Long queryTime;
    
        /** referer */
        protected String referer;
    
        /** requestedAt */
        protected LocalDateTime requestedAt;
    
        /** responseTime */
        protected Long responseTime;
    
        /** roles */
        protected String[] roles;
    
        /** searchWord */
        protected String searchWord;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

    public abstract class EsAbstractConditionAggregation {
    
        protected static final String CA_PROPERTY = "conditionAggregation";
    
        // ===================================================================================
        //                                                                           Attribute
        //                                                                           =========
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/collect/testing/ReserializedSafeTreeMapMapInterfaceTest.java

        super(false, true, true, true, true);
      }
    
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        NavigableMap<String, Integer> map = new SafeTreeMap<>();
        map.put("one", 1);
        map.put("two", 2);
        map.put("three", 3);
        return SerializableTester.reserialize(map);
      }
    
      @Override
      protected SortedMap<String, Integer> makeEmptyMap() throws UnsupportedOperationException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Mar 18 18:06:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

                throw new DcerpcException("Invalid binding URL: " + str);
    
            return binding;
        }
    
        protected DcerpcBinding binding;
        protected int max_xmit = 4280;
        protected int max_recv = max_xmit;
        protected int state = 0;
        protected DcerpcSecurityProvider securityProvider = null;
        private static int call_id = 1;
    
        public static DcerpcHandle getHandle(String url,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/timer/MonitorTarget.java

            buf.append(tempBuf.toString());
            return buf;
        }
    
        protected StringBuilder appendTimestamp(final StringBuilder buf) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            append(buf, "timestamp", () -> FessFunctions.formatDate(systemHelper.getCurrentTime()));
            return buf;
        }
    
        protected StringBuilder appendException(final StringBuilder buf, final Exception exception) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class FileAuthenticationService {
    
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<FileAuthentication> getFileAuthenticationList(final FileAuthPager fileAuthenticationPager) {
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    public class RoleTypeService {
    
        @Resource
        protected RoleTypeBhv roleTypeBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) {
    
            final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java

            checkClosed();
            if (pathProcessor == null) {
                pathProcessor = createPathProcessor();
            }
            return pathProcessor;
        }
    
        protected PathProcessor createPathProcessor() {
            return new DefaultPathProcessor();
        }
    
        private ChecksumProcessor checksumProcessor;
    
        public final ChecksumProcessor getChecksumProcessor() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        protected static final String SPNEGO_INITIALIZED = "spnego.initialized";
        protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs";
        protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation";
        protected static final String SPNEGO_ALLOW_LOCALHOST = "spnego.allow.localhost";
        protected static final String SPNEGO_PROMPT_NTLM = "spnego.prompt.ntlm";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        protected static final String STATES = "aadStates";
    
        protected static final String STATE = "state";
    
        protected static final String ERROR = "error";
    
        protected static final String ERROR_DESCRIPTION = "error_description";
    
        protected static final String ERROR_URI = "error_uri";
    
        protected static final String ID_TOKEN = "id_token";
    
        protected static final String CODE = "code";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top