Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for noneMatch (0.19 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                    // If it's not in the matches, it's only in the requested attributes
                    if (buckets.bothAttributes.values().stream().map(AttributeMatchDetails::requested).noneMatch(Predicate.isEqual(attribute))) {
                        buckets.requestedAttributes.add(attribute);
                    }
                }
                return buckets;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    	regionMatch := ruleRegion == "*" || proxyLocality.GetRegion() == ruleRegion
    	zoneMatch := ruleZone == "*" || ruleZone == "" || proxyLocality.GetZone() == ruleZone
    	subzoneMatch := ruleSubzone == "*" || ruleSubzone == "" || proxyLocality.GetSubZone() == ruleSubzone
    
    	if regionMatch && zoneMatch && subzoneMatch {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top