Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for matchesName (0.28 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

    fun <T : NodeWithSimpleName<*>> T.matchesName(candidateName: String) =
        matchesName(name.asString(), candidateName)
    
    
    private
    fun matchesName(name: String, candidateName: String) =
        name == candidateName.replace(".*\\$".toRegex(), "") // strip outer class names
    
    
    private
    fun BodyDeclaration<*>.isSince(version: String): Boolean =
        comment?.orElse(null)?.content?.contains("@since $version") == true
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    	hidden := make(map[uint64]bool)
    	for _, l := range p.Location {
    		if ignore != nil && l.matchesName(ignore) {
    			im = true
    			focusOrIgnore[l.ID] = false
    		} else if focus == nil || l.matchesName(focus) {
    			fm = true
    			focusOrIgnore[l.ID] = true
    		}
    
    		if hide != nil && l.matchesName(hide) {
    			hm = true
    			l.Line = l.unmatchedLines(hide)
    			if len(l.Line) == 0 {
    				hidden[l.ID] = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    		// TODO: GetName() can return an empty string if the user is relying on
    		// the API server to generate the name... figure out what to do for this edge case
    		name := attr.GetName()
    		for _, matchedName := range namedRule.ResourceNames {
    			if name == matchedName {
    				return true, matchResource, matchKind, nil
    			}
    		}
    	}
    
    	// if match policy is undefined or exact, don't perform fuzzy matching
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

            }
    
            private PatternMatcher getPatternMatcher(String m) {
                String matcherName = substitute(m);
                PatternMatcher matcher = matcherName == null ? defaultMatcher : getMatcher(matcherName);
                if (matcher == null) {
                    throw new IllegalArgumentException("unknown matcher " + matcherName);
                }
                return matcher;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    						}
    						if a := matchFS.Name == fs.Name; expectedMatch != a {
    							t.Errorf("Fail at %s/%s: rd=%#+v, expectedMatch=%v, actualMatch=%v, matchFSName=%q, catchAlls=%#+v", trialName, fs.Name, rdu, expectedMatch, a, matchFS.Name, catchAlls)
    						}
    						if matchFS.Name == fs.Name {
    							if fs.Spec.PriorityLevelConfiguration.Name != matchPL.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/webcomponents.min.js

    adowRoot&&(r.prototype.webkitCreateShadowRoot=r.prototype.createShadowRoot),d(r.prototype,o),d(r.prototype,i),d(r.prototype,s),d(r.prototype,c),d(r.prototype,l),p(m,r,document.createElementNS(null,"x")),e.invalidateRendererBasedOnAttribute=t,e.matchesNames=w,e.originalMatches=g,e.wrappers.Element=r}(window.ShadowDOMPolyfill),function(e){"use strict";function t(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;"}}function n(e){return...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function duckTypeClause(previousExpr,detection){var fieldListStr=detection[FIELD_LIST_INDEX];if(!fieldListStr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top