Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fp (0.12 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

                        th.send(this.req, this.rsp);
                        long cnt = this.rsp.getCount();
                        this.fp += cnt;
                        len -= cnt;
                        off += cnt;
                        if ( log.isTraceEnabled() ) {
                            log.trace(String.format("Wrote at %d remain %d off %d len %d", this.fp, len - w, off, w));
                        }
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    final FileConfig fileConfig = new FileConfig();
                    fileConfig.setId(id);
                    if (id.endsWith("P")) {
                        fileConfig.setConfigParameter("config.pipeline=fp");
                    }
                    return OptionalEntity.of(fileConfig);
                }
    
                @Override
                public OptionalEntity<FileConfig> getFileConfigByName(String name) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/BloomFilter.java

       * Computes the optimal k (number of hashes per element inserted in Bloom filter), given the
       * expected insertions and total number of bits in the Bloom filter.
       *
       * <p>See http://en.wikipedia.org/wiki/File:Bloom_filter_fp_probability.svg for the formula.
       *
       * @param n expected insertions (must be positive)
       * @param m total number of bits in Bloom filter (must be positive)
       */
      @VisibleForTesting
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top