Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,153 for projectId (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/AccessTokenDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "access_token";
        protected final String _tableDispName = "access_token";
        protected final String _tablePropertyName = "AccessToken";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/PythonJob.java

    import org.codelibs.fess.util.SystemUtil;
    
    import jakarta.servlet.ServletContext;
    
    public class PythonJob extends ExecJob {
        static final Logger logger = LogManager.getLogger(PythonJob.class);
    
        protected String filename;
    
        protected List<String> argList = new ArrayList<>();
    
        public PythonJob filename(final String filename) {
            this.filename = filename;
            return this;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

            pageSize = getDefaultPageSize();
            currentPageNumber = getDefaultCurrentPageNumber();
    
            id = null;
        }
    
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        protected int getDefaultCurrentPageNumber() {
            return 1;
        }
    
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/SingleValueIterator.java

     *
     * @author koichik
     * @param <E>
     *            要素の型
     */
    public class SingleValueIterator<E> implements Iterator<E> {
    
        /** 反復子が返す唯一の値 */
        protected final E value;
    
        /** 反復子がさらに要素を持つ場合は{@literal true} */
        protected boolean hasNext = true;
    
        /**
         * for each構文で使用するために{@link SingleValueIterator}をラップした{@link Iterable}を返します。
         *
         * @param <E>
         *            要素の型
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Returns an immutable list of project remote plugin repositories (directly specified or inherited).
         *
         * @param project the project
         */
        @Nonnull
        List<RemoteRepository> getRemotePluginRepositories(@Nonnull Project project);
    
        /**
         * Returns an immutable map of the project properties.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 11:52:48 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

    public class EncodingFilter implements Filter {
        public static final String ENCODING_MAP = "encodingRules";
    
        protected Map<String, String> encodingMap = new ConcurrentHashMap<>();
    
        protected String encoding;
    
        protected ServletContext servletContext;
    
        protected URLCodec urlCodec = new URLCodec();
    
        @Override
        public void init(final FilterConfig config) throws ServletException {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "label_type";
        protected final String _tableDispName = "label_type";
        protected final String _tablePropertyName = "LabelType";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        protected File workingDirectory = null;
    
        protected int maxOutputLine = 1000;
    
        protected long executionTimeout = 30L * 1000L; // 30sec
    
        protected String commandOutputEncoding = Charset.defaultCharset().displayName();
    
        protected String[] updateCommand;
    
        protected String[] deleteCommand;
    
        protected String[] targetUsers;
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        /** このメソッドを所有するクラスの{@link BeanDesc} */
        protected final BeanDesc beanDesc;
    
        /** メソッド */
        protected final Method method;
    
        /** メソッド名 */
        protected final String methodName;
    
        /** メソッドの引数型の配列 */
        protected final Class<?>[] parameterTypes;
    
        /** メソッドの戻り値型 */
        protected final Class<?> returnType;
    
        /** パラメータ化された引数型の情報 */
        protected final ParameterizedClassDesc[] parameterizedClassDescs;
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

        protected static final String USER_ROLES = "userRoles";
    
        protected CachedCipher cipher;
    
        protected String valueSeparator = "\n";
    
        protected String roleSeparator = ",";
    
        protected String parameterKey;
    
        protected boolean encryptedParameterValue = true;
    
        protected String headerKey;
    
        protected boolean encryptedHeaderValue = true;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 25 01:48:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top