Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 233 for ages (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages available.
         *
         * @param allPageCount the total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/UserPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount the total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  3. tests/submodel_test.go

    		Age int
    	}{Age: 20}).Error; err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	var result = struct{
    		ID int
    		Age int
    	}{}
    	if err := DB.Model(&man).Where("id = ?", man.ID).Find(&result).Error; err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if result.ID != man.ID || result.Age != 20 {
    		t.Fatalf("expected ID %d and Age 20, got ID %d and age", result.ID, result.Age)
    	}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Aug 20 04:51:17 UTC 2025
    - 944 bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

                    int searchAttributes, FileEntry initial, List<FileEntry[]> pages) throws CIFSException {
                staticInitial = initial;
                staticPages = new ArrayList<>(pages);
                // Don't reset staticThrowOnOpen here - it's controlled by tests
                return new TestIterator(th, parent, wildcard, filter, searchAttributes);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

         * Default current page number (1-based).
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * The total number of records across all pages.
         */
        private int allRecordCount;
    
        /**
         * The total number of pages available.
         */
        private int allPageCount;
    
        /**
         * Indicates whether a previous page exists before the current page.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        /** Default current page number. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
        /** Flag indicating whether a previous page exists. */
        private boolean existPrePage;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RolePager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return The total number of pages.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount The total number of pages.
         */
        public void setAllPageCount(final int allPageCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Access-Control-Max-Age} header field name. */
      public static final String ACCESS_CONTROL_MAX_AGE = "Access-Control-Max-Age";
    
      /** The HTTP {@code Age} header field name. */
      public static final String AGE = "Age";
    
      /** The HTTP {@code Allow} header field name. */
      public static final String ALLOW = "Allow";
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        /** Default current page number (first page). */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages. */
        private int allPageCount;
    
        /** Flag indicating if there is a previous page. */
        private boolean existPrePage;
    
        /** Flag indicating if there is a next page. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

          .isEqualTo(2000L)
        assertThat(parseCookie(0L, url, "a=b; Expires=Thu, 01 Jan 1970 00:00:01 GMT; Max-Age=2")!!.expiresAt)
          .isEqualTo(2000L)
      }
    
      /** If a cookie incorrectly defines multiple 'Max-Age' attributes, the last one defined wins.  */
      @Test fun lastMaxAgeWins() {
        assertThat(parseCookie(0L, url, "a=b; Max-Age=2; Max-Age=4; Max-Age=1; Max-Age=3")!!.expiresAt)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
Back to top