Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for conflicting (0.29 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    	},
    	{
    		name:       "conflicting gateways detect",
    		inputFiles: []string{"testdata/conflicting-gateways.yaml"},
    		analyzer:   &gateway.ConflictingGatewayAnalyzer{},
    		expected: []message{
    			{msg.ConflictingGateways, "Gateway alpha"},
    			{msg.ConflictingGateways, "Gateway beta"},
    		},
    	},
    	{
    		name:       "conflicting gateways detect: no port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

            resolutionAction.execute(result);
            if (selected != null) {
                maybeSetReason(conflict.participants, selected);
            }
            LOGGER.debug("Selected {} from conflicting modules {}.", selected, conflict.candidates);
        }
    
        private void maybeSetReason(Set<ModuleIdentifier> partifipants, ComponentResolutionState selected) {
            for (ModuleIdentifier identifier : partifipants) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

                                    Version.V40,
                                    "Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM.");
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

                                    .setMessage("Ignored POM import for: " + toString(dependency) + " as already imported "
                                            + toString(present) + ". Add the conflicting managed dependency directly "
                                            + "to the dependencyManagement section of the POM."));
                        }
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:cannot-write-to-reserved-location' : 'Cannot write to reserved location',
            'validation:property-validation:conflicting-annotations' : 'Type has conflicting annotation',
            'validation:property-validation:ignored-property-must-not-be-annotated' : 'Has wrong combination of annotations',
            'validation:property-validation:implicit-dependency' : 'Property has implicit dependency',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/sync/pool.go

    var poolRaceHash [128]uint64
    
    // poolRaceAddr returns an address to use as the synchronization point
    // for race detector logic. We don't use the actual pointer stored in x
    // directly, for fear of conflicting with other synchronization on that address.
    // Instead, we hash the pointer to get an index into poolRaceHash.
    // See discussion on golang.org/cl/31589.
    func poolRaceAddr(x any) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      return matching_devices;
    }
    
    // Create error message for a conflicting attribute of a device.
    template <typename T>
    absl::Status MismatchedTPUSystemAttributeErr(absl::string_view attribute, T a,
                                                 T b) {
      return absl::InvalidArgumentError(
          absl::StrCat("found ", kDeviceTPUSystem, " devices with conflicting ",
                       attribute, "s '", a, "' and '", b, "'"));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils.go

    		return true
    	}
    
    	if hasUnexpectedController(claim, set, pod) {
    		if hasOwnerRef(claim, set) || hasOwnerRef(claim, pod) {
    			return false // Need to clean up the conflicting controllers
    		}
    		// The claim refs are good, we don't want to add any controllers on top of the unexpected one.
    		return true
    	}
    
    	if hasNonControllerOwner(claim, set, pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_pod_control.go

    		default:
    			if hasUnexpectedController(claim, set, pod) {
    				// Add an event so the user knows they're in a strange configuration. The claim will be cleaned up below.
    				msg := fmt.Sprintf("PersistentVolumeClaim %s has a conflicting OwnerReference that acts as a manging controller, the retention policy is ignored for this claim", claimName)
    				spc.recorder.Event(set, v1.EventTypeWarning, "ConflictingController", msg)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            PotentialConflict c = resolveState.getConflictTracker().getModuleConflictHandler().registerCandidate(module);
            if (c.conflictExists()) {
                // We have a conflict
                LOGGER.debug("Found new conflicting module {}", module);
    
                // For each module participating in the conflict, deselect the currently selection, and remove all outgoing edges from the version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top