Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,283 for search_ (0.16 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                return parent.toString();
            }
        }
    
        public void setSeacher(final RankFusionSearcher searcher) {
            this.searchers[0] = searcher;
        }
    
        public void register(final RankFusionSearcher searcher) {
            if (logger.isDebugEnabled()) {
                logger.debug("Load {}", searcher.getClass().getSimpleName());
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. docs/debugging/pprofgoparser/main.go

    	flag.DurationVar(&margin, "margin", 0, "margin time")
    	flag.StringVar(&searchText, "search", "", "Regex to search for a text in one goroutine stacktrace")
    }
    
    func parseGoroutineType2(path string) (map[time.Duration][]string, error) {
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, err
    	}
    
    	bf := bytes.Buffer{}
    
    	save := func(s string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaRuntime.java

            };
        }
    
        /**
         * Searches the specified class path for a Scala Jar file (scala-compiler, scala-library,
         * scala-jdbc, etc.) with the specified appendix (compiler, library, jdbc, etc.).
         * If no such file is found, {@code null} is returned.
         *
         * @param classpath the class path to search
         * @param appendix the appendix to search for
         * @return a Scala Jar file with the specified appendix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http2/hpack/encode.go

    	if err == nil && n != len(e.buf) {
    		err = io.ErrShortWrite
    	}
    	return err
    }
    
    // searchTable searches f in both stable and dynamic header tables.
    // The static header table is searched first. Only when there is no
    // exact match for both name and value, the dynamic header table is
    // then searched. If there is no match, i is 0. If both name and value
    // match, i is the matched index and nameValueMatch becomes true. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help.jsp

    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    		<pre>Fess~0.5</pre>
    	</dd>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResourceFinderSearchableFileStoreAdapter.java

    import java.util.stream.Collectors;
    
    /**
     * Makes a LocallyAvailableResourceFinder out of a FileStoreSearcher.
     * @param <C> The type of criterion the filestore can be searched for, and therefore locally available resources searched for.
     */
    public class LocallyAvailableResourceFinderSearchableFileStoreAdapter<C> extends AbstractLocallyAvailableResourceFinder<C> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    	}
    	return p, nil
    }
    
    // MustFindProc is like FindProc but panics if search fails.
    func (d *DLL) MustFindProc(name string) *Proc {
    	p, e := d.FindProc(name)
    	if e != nil {
    		panic(e)
    	}
    	return p
    }
    
    // FindProcByOrdinal searches DLL d for procedure by ordinal and returns *Proc
    // if found. It returns an error if search fails.
    func (d *DLL) FindProcByOrdinal(ordinal uintptr) (proc *Proc, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

            0 * readStore.add(key, action)
        }
    
        def "searches in both read and write stores"() {
            setup:
            def r1 = Stub(LocallyAvailableExternalResource)
            def r2 = Stub(LocallyAvailableExternalResource)
            def r3 = Stub(LocallyAvailableExternalResource)
            1 * writeStore.search(key) >> {
                [r1] as Set
            }
            1 * readStore.search(key) >> {
                [r2, r3] as Set
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/internal/bytealg/indexbyte_s390x.s

    	VLVGB	$0, R5, V19
    	VREPB	$0, V19, V17
    
    vectorloop:
    	CMPBGE	R3, R7, residual
    	VL	0(R3), V16    // load string to be searched into V16
    	ADD	$16, R3
    	VFEEBS	V16, V17, V18 // search V17 in V16 and set conditional code accordingly
    	BVS	vectorloop
    
    	// when vector search found c in the string
    	VLGVB	$7, V18, R7   // load 7th element of V18 containing index into R7
    	SUB	$16, R3
    	SUB	R6, R3
    	ADD	R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/bytealg/bytealg.go

    		if i&1 != 0 {
    			pow *= sq
    		}
    		sq *= sq
    	}
    	return hash, pow
    }
    
    // IndexRabinKarp uses the Rabin-Karp search algorithm to return the index of the
    // first occurrence of sep in s, or -1 if not present.
    func IndexRabinKarp[T string | []byte](s, sep T) int {
    	// Rabin-Karp search
    	hashss, pow := HashStr(sep)
    	n := len(sep)
    	var h uint32
    	for i := 0; i < n; i++ {
    		h = h*PrimeRK + uint32(s[i])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top