Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for matcherfunc (0.14 sec)

  1. src/testing/match.go

    	// accept partial match that may produce full match later.
    	ok, partial = m.filter.matches(elem, m.matchFunc)
    	if !ok {
    		return name, false, false
    	}
    
    	// skip must not match.
    	// ignore partial match so we can get to more precise match later.
    	skip, partialSkip := m.skip.matches(elem, m.matchFunc)
    	if skip && !partialSkip {
    		return name, false, false
    	}
    
    	return name, ok, partial
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top