Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for failureurl (0.26 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.failureurl;
    
    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    public class SearchBody extends BaseSearchBody {
        public String url;
    
        public Integer errorCountMin;
    
        public Integer errorCountMax;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 912 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.failureurl;
    
    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String url;
    
        public String errorCountMin;
    
        public String errorCountMax;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 880 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.failureurl;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.app.pager.FailureUrlPager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    
    /**
     * Integration Tests which need an execution of crawler
     * - /api/admin/joblog
     * - /api/admin/crawlinginfo
     * - /api/admin/failureurl
     * - /api/admin/searchlist
     * */
    @Tag("it")
    public class CrawlerLogTests extends CrawlTestBase {
        private static final Logger logger = LogManager.getLogger(CrawlerLogTests.class);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.failureurl;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<p><la:message key="labels.menu_log" /></p>
    						</a></li></c:if>
    
    					<c:if test="${fe:permission('admin-failureurl-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/failureurl/')}"
    						   class="nav-link <c:if test="${param.menuType=='failureUrl'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_failure_url" /></p>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/failureurl/admin_failureurl.jsp */
        HtmlNext path_AdminFailureurl_AdminFailureurlJsp = new HtmlNext("/admin/failureurl/admin_failureurl.jsp");
    
        /** The path of the HTML: /admin/failureurl/admin_failureurl_details.jsp */
        HtmlNext path_AdminFailureurl_AdminFailureurlDetailsJsp = new HtmlNext("/admin/failureurl/admin_failureurl_details.jsp");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                }
            }
            return resList;
        }
    
        protected static List<Map<String, Object>> readFailureUrl(final String configId) {
            final List<Map<String, Object>> logList = readLogItems("failureurl");
            final List<Map<String, Object>> resList = new ArrayList<>();
            for (Map<String, Object> elem : logList) {
                logger.info("config_id: {}, thread_name: {}", configId, elem.get("thread_name"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

    import org.codelibs.fess.app.web.admin.elevateword.AdminElevatewordAction;
    import org.codelibs.fess.app.web.admin.esreq.AdminEsreqAction;
    import org.codelibs.fess.app.web.admin.failureurl.AdminFailureurlAction;
    import org.codelibs.fess.app.web.admin.fileauth.AdminFileauthAction;
    import org.codelibs.fess.app.web.admin.fileconfig.AdminFileconfigAction;
    import org.codelibs.fess.app.web.admin.general.AdminGeneralAction;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    online.help.base.link=https://fess.codelibs.org/{lang}/{version}/admin/
    online.help.installation=https://fess.codelibs.org/{lang}/{version}/install/install.html
    online.help.eol=https://fess.codelibs.org/{lang}/eol.html
    online.help.name.failureurl=failureurl
    online.help.name.elevateword=elevateword
    online.help.name.reqheader=reqheader
    online.help.name.dict.synonym=synonym
    online.help.name.dict=dict
    online.help.name.dict.kuromoji=kuromoji
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top