Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for conflicting (0.17 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/modget/get.go

    	// iteration, so any ambiguous queries will remain so. In order to make
    	// progress, resolve them arbitrarily but deterministically.
    	//
    	// If that results in conflicting versions, the user can re-run 'go get'
    	// with additional explicit versions for the conflicting packages or
    	// modules.
    	resolvedArbitrarily := 0
    	for _, q := range queries {
    		for _, cs := range q.candidates {
    			isPackage, m := r.chooseArbitrarily(cs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    func (cb *ClusterBuilder) normalizeClusters(clusters []*discovery.Resource) []*discovery.Resource {
    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    	// for any clusters that share the same name the first cluster is kept and the others are discarded.
    	have := sets.String{}
    	out := make([]*discovery.Resource, 0, len(clusters))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    	if old.port.Protocol != cc.port.Protocol && old.telemetryMetadata.InstanceHostname != cc.telemetryMetadata.InstanceHostname {
    		lb.push.AddMetric(model.ProxyStatusConflictInboundListener, lb.node.ID, lb.node.ID,
    			fmt.Sprintf("Conflicting inbound listener:%d. existing: %s, incoming: %s", cc.port.TargetPort,
    				old.telemetryMetadata.InstanceHostname, cc.telemetryMetadata.InstanceHostname))
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    // equivalent by determining the types for a given list of (bound)
    // type parameters which may occur within x and y. If x and y are
    // structurally different (say []T vs chan T), or conflicting
    // types are determined for type parameters, unification fails.
    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top