Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 648 for isInvalid (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

            this.size = Integer.toString(size);
        }
    
        /**
         * Gets the page size for search log results with validation.
         * Returns the default page size if the current size is invalid.
         *
         * @return the validated page size
         */
        public int getPageSize() {
            if (StringUtil.isBlank(size)) {
                return SearchLogPager.DEFAULT_PAGE_SIZE;
            }
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		SID_NAME_ALIAS    = 4, /* local group */
    		SID_NAME_WKN_GRP  = 5, /* well-known group */
    		SID_NAME_DELETED  = 6, /* deleted account: needed for c2 rating */
    		SID_NAME_INVALID  = 7, /* invalid account */
    		SID_NAME_UNKNOWN  = 8  /* oops. */
    	} LsarSidType;
    
    	typedef struct {
    		LsarSidType sid_type;
    		uint32_t rid;
    		uint32_t sid_index;
    	} LsarTranslatedSid;
    
    	typedef struct {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (3)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    		SID_NAME_ALIAS    = 4, /* local group */
    		SID_NAME_WKN_GRP  = 5, /* well-known group */
    		SID_NAME_DELETED  = 6, /* deleted account: needed for c2 rating */
    		SID_NAME_INVALID  = 7, /* invalid account */
    		SID_NAME_UNKNOWN  = 8  /* oops. */
    	} LsarSidType;
    
    	typedef struct {
    		LsarSidType sid_type;
    		uint32_t rid;
    		uint32_t sid_index;
    	} LsarTranslatedSid;
    
    	typedef struct {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SpnegoContext.java

                case (byte) 0xa1 -> new NegTokenTarg(token);
                default -> throw new SpnegoException("Invalid token type");
                };
                return spnegoToken;
            } catch (final IOException e) {
                throw new SpnegoException("Invalid token");
            }
        }
    
        @Override
        public boolean supportsIntegrity() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        public void setExistNextPage(final boolean existNextPage) {
            this.existNextPage = existNextPage;
        }
    
        /**
         * Gets the number of records to display per page.
         * If page size is not set or is invalid, returns the default page size.
         *
         * @return page size
         */
        public int getPageSize() {
            if (pageSize <= 0) {
                pageSize = getDefaultPageSize();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbTree.java

                            break;
                        default:
                            throw new SmbException("Invalid operation for " + service + " service");
                        }
                        break;
                    default:
                        throw new SmbException("Invalid operation for " + service + " service" + request);
                    }
                }
                request.tid = tid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/PatternCompiler.java

     * java.util.ServiceLoader} mechanism.
     */
    @GwtIncompatible
    interface PatternCompiler {
      /**
       * Compiles the given pattern.
       *
       * @throws IllegalArgumentException if the pattern is invalid
       */
      @RestrictedApi(
          explanation = "PatternCompiler is an implementation detail of com.google.common.base",
          allowedOnPath = ".*/com/google/common/base/.*")
      CommonPattern compile(String pattern);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/PercentEscaper.java

       * @param plusForSpace true if ASCII space should be escaped to {@code +} rather than {@code %20}
       * @throws IllegalArgumentException if any of the parameters were invalid
       */
      public PercentEscaper(String safeChars, boolean plusForSpace) {
        // TODO(dbeaumont): Switch to static factory methods for creation now that class is final.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/ntlmssp/Type1MessageTest.java

            // Then
            assertArrayEquals(bytes1, bytes2);
        }
    
        @Test
        @DisplayName("Should handle parsing invalid message bytes")
        void testInvalidMessageBytes() {
            // Given
            byte[] invalidBytes = { 1, 2, 3, 4, 5 }; // Too short and invalid
    
            // When/Then
            assertThrows(IOException.class, () -> {
                new Type1Message(invalidBytes);
            });
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/ReferenceEntry.java

     *
     * <p>Entries in the map can be in the following states:
     *
     * <p>Valid:
     *
     * <ul>
     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 18:34:30 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top