Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,376 for getC (0.02 sec)

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

            accessType = null;
            logType = LOG_TYPE_SEARCH;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return The default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records matching the search criteria.
         *
         * @return The total record count
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java

        /**
         * Checks if the heartbeat was successful.
         *
         * @return true if successful
         */
        public boolean isSuccess() {
            return returnCode == 0;
        }
    
        /**
         * Gets the sequence number.
         *
         * @return the sequence number
         */
        public long getSequenceNumber() {
            return sequenceNumber;
        }
    
        /**
         * Sets the sequence number.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessRegisterResponse.java

        /**
         * Checks if the registration was successful.
         *
         * @return true if successful
         */
        public boolean isSuccess() {
            return returnCode == 0;
        }
    
        /**
         * Gets a human-readable error description.
         *
         * @return the error description
         */
        public String getError() {
            return error != null ? error : "Error code: " + returnCode;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsDataConfigBhv.java

                result.setAvailable(DfTypeUtil.toBoolean(source.get("available")));
                result.setBoost(DfTypeUtil.toFloat(source.get("boost")));
                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setDescription(DfTypeUtil.toString(source.get("description")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportInternal.java

         */
        boolean isSigningEnforced() throws SmbException;
    
        /**
         * Gets the server's encryption key for authentication.
         *
         * @return the encryption key used by the server
         */
        byte[] getServerEncryptionKey();
    
        /**
         * Gets or creates an SMB session for the given context.
         *
         * @param ctx the CIFS context
         * @return session
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

                    } else {
                        sb.append(ch);
                    }
                }
                return sb.toString();
            }
            return s;
        }
    
        /**
         * Gets the simple name of this dictionary file.
         * @return the simple name of the file
         */
        public String getSimpleName() {
            return new File(path).getName();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            result = ParameterUtil.createConfigParameterMap(configParameters);
            assertEquals(2, result.get(ConfigName.CONFIG).size());
            assertEquals("30", result.get(ConfigName.CONFIG).get("timeout"));
            assertEquals("3", result.get(ConfigName.CONFIG).get("retry"));
            assertEquals(0, result.get(ConfigName.CLIENT).size());
    
            // Test with client parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            super(config);
            this.andx = andx;
            if (andx != null) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
        /**
         * Gets the chained AndX command
         * @return the andx
         */
        public final ServerMessageBlock getAndx() {
            return this.andx;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java

            assertEquals("file1.txt", notifications.get(0).getFileName());
            assertEquals(FileNotifyInformation.FILE_ACTION_ADDED, notifications.get(0).getAction());
    
            // Verify second notification
            assertEquals("file2.txt", notifications.get(1).getFileName());
            assertEquals(FileNotifyInformation.FILE_ACTION_REMOVED, notifications.get(1).getAction());
    
            // Verify third notification
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            dataSerializer = ComponentUtil.getComponent("dataSerializer");
        }
    
        /**
         * Gets the Fess configuration instance.
         *
         * @return the Fess configuration
         */
        @Override
        public FessConfig getFessConfig() {
            return fessConfig;
        }
    
        /**
         * Gets the logger instance for this transformer.
         *
         * @return the logger instance
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top