Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MatchFull (0.08 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	Out     string // full target output (stdout and stderr combined)
    
    	Suffix    string   // the suffix used for collecting MatchIDs, MatchText, and MatchFull
    	MatchIDs  []uint64 // match IDs enabled during this trial
    	MatchText []string // match reports for the IDs, with match markers removed
    	MatchFull []string // full match lines for the IDs, with match markers kept
    }
    
    // &searchFatal is a special panic value to signal that Search failed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/regexp/exec_test.go

    	re.longest = true
    	return re.FindStringSubmatchIndex(text), "[longest]"
    }
    
    var match = []func(*Regexp, *Regexp, string) (bool, string){
    	matchFull,
    	matchPartial,
    	matchFullLongest,
    	matchPartialLongest,
    }
    
    func matchFull(re, refull *Regexp, text string) (bool, string) {
    	refull.longest = false
    	return refull.MatchString(text), "[full]"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top