Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 278 for Conflict (0.22 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/labels_test.go

    			conflict: false,
    		},
    		{
    			labels1:  map[string]string{"env": "test"},
    			labels2:  map[string]string{"env": "dev"},
    			conflict: true,
    		},
    		{
    			labels1:  map[string]string{"env": "test", "infra": "false"},
    			labels2:  map[string]string{"infra": "true", "color": "blue"},
    			conflict: true,
    		},
    	}
    	for _, test := range tests {
    		conflict := Conflicts(Set(test.labels1), Set(test.labels2))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictException.java

            TreeFormatter formatter = new TreeFormatter();
    
            String plural = getPluralEnding(conflicts);
            formatter.node("Conflict" + plural + " found for the following module" + plural);
            formatter.startChildren();
    
            conflicts.stream().limit(MAX_SEEN_MODULE_COUNT)
                .forEach(conflict -> formatter.node(conflict.getMessage()));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    }
    
    // TODO: replace with merge.Conflicts.ToSet()
    func conflictsToSet(conflicts merge.Conflicts) *fieldpath.Set {
    	conflictSet := fieldpath.NewSet()
    	for _, conflict := range []merge.Conflict(conflicts) {
    		conflictSet.Insert(conflict.Path)
    	}
    	return conflictSet
    }
    
    func conflictsDifference(conflicts merge.Conflicts, s *fieldpath.Set) merge.Conflicts {
    	newConflicts := []merge.Conflict{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/PotentialConflictFactory.java

        static <T> PotentialConflict potentialConflict(@Nullable final ConflictContainer<ModuleIdentifier, T>.Conflict conflict) {
            if (conflict == null) {
                return NO_CONFLICT;
            }
            return new HasConflict(conflict.participants);
        }
    
        static PotentialConflict noConflict() {
            return NO_CONFLICT;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/FailOnVersionConflictGraphVisitor.java

                allConflicts.add(buildConflict(owner, selectionReason));
            }
        }
    
        private static Conflict buildConflict(DependencyGraphComponent owner, ComponentSelectionReason selectionReason) {
            ModuleIdentifier module = owner.getModuleVersion().getModule();
            return new Conflict(ImmutableList.copyOf(owner.getAllVersions()), buildConflictMessage(module, selectionReason));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    If the module you want to select is not part of the conflict, you can abstain from performing a selection, effectively not resolving _this_ conflict.
    It might be that another conflict exists in the graph for the same capability and will have the module you want to select.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    		case map[string]interface{}:
    			for key, leftValue := range typedLeft {
    				rightValue, ok := typedRight[key]
    				if !ok {
    					continue
    				}
    				if conflict, err := HasConflicts(leftValue, rightValue); err != nil || conflict {
    					return conflict, err
    				}
    			}
    
    			return false, nil
    		default:
    			return true, nil
    		}
    	case []interface{}:
    		switch typedRight := right.(type) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ResolutionErrorRenderer.java

            registerError(output -> {
                Collection<Conflict> conflicts = conflict.getConflicts();
                String plural = getPluralEnding(conflicts);
                output.text("Dependency resolution failed because of conflict" + plural + " on the following module"+ plural + ":");
                output.println();
                conflicts.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 17:52:50 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

         */
        boolean hasConflicts();
    
        /**
         * Resolves next conflict and trigger provided action after the resolution
         */
        void resolveNextConflict(Action<RESULT> resolutionAction);
    
        /**
         * Indicates if the identifier is a known participant in a conflict
         *
         * @param id the identifier to check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. CODE_OF_CONDUCT.md

    If you are experiencing or witnessing conflict, we ask you to use the following escalation strategy to address the conflict:
    
    1.  Address the perceived conflict directly with those involved, preferably in a
        real-time medium.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top