Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 210 for rotate (0.03 sec)

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

         */
        public String createdTime;
    
        /**
         * Version number of the role type.
         */
        public String versionNo;
    
        /**
         * Clears the pager's state.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsUserCB.java

                doColumn("roles");
            }
    
            public void columnRoomNumber() {
                doColumn("roomNumber");
            }
    
            public void columnState() {
                doColumn("state");
            }
    
            public void columnStreet() {
                doColumn("street");
            }
    
            public void columnSurname() {
                doColumn("surname");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

            // Test throwing and catching the exception with cause
            String expectedMessage = "System error occurred";
            Exception expectedCause = new IllegalStateException("Invalid state");
    
            try {
                throw new FessSystemException(expectedMessage, expectedCause);
            } catch (FessSystemException e) {
                assertEquals(expectedMessage, e.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * <p>
         * This method performs either an insert operation (for new items with ID 0)
         * or an update operation (for existing items with non-zero ID) depending on
         * the item's current state.
         * </p>
         *
         * @param dictId the dictionary ID to store the character mapping item in
         * @param charMappingItem the character mapping item to store
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceHttpTest.kt

          "ResponseBodyEnd",
          "ConnectionReleased",
          "CallEnd",
        )
      }
    
      @Test
      fun sseReauths() {
        client =
          client
            .newBuilder()
            .authenticator { route, response ->
              response.request
                .newBuilder()
                .header("Authorization", "XYZ")
                .build()
            }.build()
        server.enqueue(
          MockResponse(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Reset the search criteria and pager to default state.
         * Clears all filters and returns to the initial page view.
         *
         * @param form The search form to reset
         * @return HTML response showing the reset stemmer override list
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/lol.html
    lol
    
    // london : Dot London Domains Limited
    // https://www.iana.org/domains/root/db/london.html
    london
    
    // lotte : Lotte Holdings Co., Ltd.
    // https://www.iana.org/domains/root/db/lotte.html
    lotte
    
    // lotto : Identity Digital Limited
    // https://www.iana.org/domains/root/db/lotto.html
    lotto
    
    // love : Waterford Limited
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

        public RelatedQueryPager() {
            // Default constructor - fields will be initialized to default values
        }
    
        /**
         * Clears all pager data and resets to default values.
         * Resets pagination state and clears all related query fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

            return asHtml(path_AdminFailureurl_AdminFailureurlJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Resets the search criteria and pagination state.
         *
         * @param form the search form to reset
         * @return HTML response for the failure URL list page with cleared search
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

        public void test_getResponse_withMetadataType() {
            // Setup - Test with null response initially
            ActionResponse result = authenticator.getResponse(SsoResponseType.METADATA);
    
            // Verify initial state
            assertNull(result);
    
            // Setup with JSON response (easier to create without LastaFlute context)
            JsonResponse<?> expectedResponse = new JsonResponse<>(new HashMap<>());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top