Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 562 for search_ (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

         *
         * @param dir the directory in which to search
         * @param basename the base name of the script file, i.e. its file name excluding the extension
         * @return the resolved script file present on disk, or {@literal null} if none were found
         */
        @Nullable
        File resolveScriptFile(File dir, String basename);
    
        /**
         * Searches for script files in the given directory, that is, any file with a known
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/os/exec/lp_wasm.go

    //go:build wasm
    
    package exec
    
    import (
    	"errors"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in $PATH")
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

        /**
         * If a node has fewer children, we use a linear search for the child.
         * We use this limit since {@link VfsRelativePath#compareToFirstSegment(String, CaseSensitivity)}
         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
         * so comparing the searched path to all of the children is actually faster than doing a binary search.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top