Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HasConflict (0.73 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependencies/HtmlDependencyReportTaskIntegrationTest.groovy

            barInsight[0].resolvable == 'RESOLVED'
            barInsight[0].hasConflict == false
            barInsight[0].description == null
            barInsight[0].children.size() == 0
    
            barInsight[1].name == 'foo:bar:2.0'
            barInsight[1].resolvable == 'RESOLVED'
            barInsight[1].hasConflict == false
            barInsight[1].description == null
            barInsight[1].children.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

                boolean hasConflict = !childName.equals(childDependency.getName());
                String name = leaf ? configurationName : childName;
    
                LinkedHashMap<String, Object> map = new LinkedHashMap<>(6);
                map.put("name", name);
                map.put("resolvable", childDependency.getResolutionState());
                map.put("hasConflict", hasConflict);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice.go

    	}
    
    	// each HTTPMatchRequest of delegate must find a superset in root.
    	// otherwise it conflicts
    	for _, subMatch := range delegate {
    		foundMatch := false
    		for _, rootMatch := range root {
    			if hasConflict(rootMatch, subMatch) {
    				log.Warnf("HTTPMatchRequests conflict: root %v, delegate %v", rootMatch, subMatch)
    				continue
    			}
    			// merge HTTPMatchRequest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top