Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,760 for slop (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "aaa");
            assertQueryBuilder(MatchPhraseQueryBuilder.class,
                    "{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":1.0}}}", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/internal/bytealg/index_amd64.go

    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 8 characters, plus a few slop to start.
    	return (n + 16) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 617 bytes
    - Viewed (0)
  4. src/internal/bytealg/index_ppc64x.go

    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 8 characters, plus a few slop to start.
    	return (n + 16) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 05:34:46 UTC 2023
    - 637 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

                        (f, b) -> QueryBuilders.matchPhrasePrefixQuery(f, toLowercaseWildcard(text)).boost(b * boost)
                                .maxExpansions(fessConfig.getQueryPrefixExpansionsAsInteger()).slop(fessConfig.getQueryPrefixSlopAsInteger()));
            }
    
            if (!isSearchField(field)) {
                final String query = prefixQuery.getPrefix().toString();
                final String origQuery = toLowercaseWildcard(query);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/time/tick_test.go

    		for range count - count/2 {
    			<-ticker.C
    		}
    		ticker.Stop()
    		t1 := Now()
    		dt := t1.Sub(t0)
    		target := 3 * delta * Duration(count/2)
    		slop := target * 3 / 10
    		if dt < target-slop || dt > target+slop {
    			errs = append(errs, fmt.Sprintf("%d %s ticks then %d %s ticks took %s, expected [%s,%s]", count/2, delta, count/2, delta*2, dt, target-slop, target+slop))
    			if dt > target+slop {
    				// System may be overloaded; sleep a bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/internal/bytealg/index_arm64.go

    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 16 characters, plus a few slop to start.
    	return 4 + n>>4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 05:45:33 UTC 2019
    - 706 bytes
    - Viewed (0)
  8. src/internal/bytealg/index_s390x.go

    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 8 characters, plus a few slop to start.
    	return (n + 16) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 1011 bytes
    - Viewed (0)
  9. src/strconv/strconv_test.go

    			AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)
    		}},
    		{0, `AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64)`, func() { AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64) }},
    		// In practice we see 7 for the next one, but allow some slop.
    		// Before pre-allocation in appendQuotedWith, we saw 39.
    		{10, `AppendQuoteToASCII(nil, oneMB)`, func() { AppendQuoteToASCII(nil, string(oneMB)) }},
    		{0, `ParseFloat("123.45", 64)`, func() { ParseFloat("123.45", 64) }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. src/hash/maphash/smhasher_test.go

    	for i := 1; i < len(list); i++ {
    		if list[i] == list[i-1] {
    			collisions++
    		}
    	}
    	n := len(list)
    
    	const SLOP = 10.0
    	pairs := int64(n) * int64(n-1) / 2
    	expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
    	stddev := math.Sqrt(expected)
    	if float64(collisions) > expected+SLOP*(3*stddev+1) {
    		t.Errorf("unexpected number of collisions: got=%d mean=%f stddev=%f", collisions, expected, stddev)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top