Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for 10 (5.89 sec)

  1. src/main/java/jcifs/internal/fscc/FileInformation.java

        public static final byte FILE_STANDARD_INFO = 0x5;
    
        /**
         * 
         */
        public static final byte FILE_INTERNAL_INFO = 0x6;
    
        /**
         * 
         */
        public static final byte FILE_RENAME_INFO = 10;
    
    
        /**
         * 
         * @return the file information class
         */
        byte getFileInformationLevel ();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

    UERY1\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"fuzzy\":{\"title\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.01}}},{\"fuzzy\":{\"content\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.005}}}],\"adjust_pure_negative\":true,\"boost\":1.0}},\"functions\":[{\"filter\":{\"match_all\":{\"boost\":1.0}},\"field_value_factor\":...
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

        @Size(max = 255)
        public String createdBy;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
            maxSize = 10;
            boost = 100.0f;
            createdBy = ComponentUtil.getSystemHelper().getUsername();
            createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
    
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java

            SMBUtil.writeInt2(this.fileAttributes, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeUTime(this.lastWriteTime, dst, dstIndex);
            dstIndex += 4;
            // reserved
            dstIndex += 10;
            int len = dstIndex - start;
            return len;
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        protected String defaultDomain;
        protected String defaultUserName;
        protected String defaultPassword;
        protected String netbiosHostname;
        protected int netbiosCachePolicy = 60 * 60 * 10;
        protected int netbiosSocketTimeout = 5000;
        protected int netbiosSendBufferSize = 576;
        protected int netbiosRevcBufferSize = 576;
        protected int netbiosRetryCount = 2;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public Integer getLdapMaxUsernameLengthAsInteger() {
                    return Integer.valueOf(10);
                }
            };
    
            File file = File.createTempFile("test", ".properties");
            file.deleteOnExit();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        String getQueryAdditionalResponseFields();
    
        default String[] getQueryAdditionalResponseFields(final String... fields) {
            final List<String> list = new ArrayList<>(fields.length + 10);
            stream(fields).of(stream -> stream.forEach(list::add));
            split(getQueryAdditionalResponseFields(), ",")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).forEach(list::add));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            intervalControlHelper.addIntervalRule("12:15", "12:15", "3,5", 4000);
            assertEquals(0, intervalControlHelper.getDelay());
    
            intervalControlHelper.addIntervalRule("12:10", "12:20", "1", 5000);
            assertEquals(5000, intervalControlHelper.getDelay());
    
        }
    
        public void test_2250() throws ParseException {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        }
    
    
        @Override
        public boolean isValid ( CIFSContext ctx, SmbNegotiationRequest req ) {
            if ( getDialectIndex() > 10 ) {
                return false;
            }
    
            if ( ( this.server.scapabilities & SmbConstants.CAP_EXTENDED_SECURITY ) != SmbConstants.CAP_EXTENDED_SECURITY
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

    import com.google.common.cache.LoadingCache;
    
    public class SearchLogHelper {
        private static final Logger logger = LogManager.getLogger(SearchLogHelper.class);
    
        protected long userCheckInterval = 10 * 60 * 1000L;// 10 min
    
        protected int userInfoCacheSize = 10000;
    
        protected volatile Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
Back to top