Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for Page (0.17 sec)

  1. src/bytes/boundary_test.go

    package bytes_test
    
    import (
    	. "bytes"
    	"syscall"
    	"testing"
    )
    
    // This file tests the situation where byte operations are checking
    // data very near to a page boundary. We want to make sure those
    // operations do not read across the boundary and cause a page
    // fault where they shouldn't.
    
    // These tests run only on linux. The code being tested is
    // not OS-specific, so it does not need to be tested on all
    // operating systems.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 30 20:05:58 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

            Providing context helps us come up with a solution that is most useful in the real world
        validations:
          required: false
      - type: input
        id: page
        attributes:
          label: Page with the problem
          description: Please, provide a link to the relevant documentation page
        validations:
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Jan 15 10:01:01 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class FileAuthPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class CrawlingInfoPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class WebConfigPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

        public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER;
    
        public int getPageSize() {
            if (size != null) {
                return size;
            }
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        public int getCurrentPageNumber() {
            if (page != null) {
                return page;
            }
            return Constants.DEFAULT_ADMIN_PAGE_NUMBER;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/UserPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class UserPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class JobLogPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

    public class VirtualHostHelper {
    
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
            return processVirtualHost(s -> {
                final String basePath = getVirtualHostBasePath(s, page);
                return new HtmlNext(basePath + page.getRoutingPath());
            }, page);
        }
    
        protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
            return StringUtil.isBlank(s) ? StringUtil.EMPTY : "/" + s;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class ReqHeaderPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
Back to top