Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 231 for conflicting (0.27 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    				// Date in a Lifecycle Expiration Policy.
    				events = append(events, Event{
    					Action: DeleteVersionAction,
    					RuleID: rule.ID,
    					Due:    now,
    				})
    				// No other conflicting actions apply to an expired object delete marker
    				break
    			}
    
    			if !rule.Expiration.IsDaysNull() {
    				// Specifying the Days tag will automatically perform ExpiredObjectDeleteMarker cleanup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    The highest version that matches all conditions is selected.
    If no such version is found, Gradle fails with an error showing the conflicting declarations.
    If this happens you can adjust your dependencies or dependency constraints declarations, or make other adjustments to the transitive dependencies if needed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/launch_to_device_attribute.cc

            return WalkResult::advance();
          } else if (device_str_attr.getValue() != launch.getDevice()) {
            return launch.emitOpError()
                   << "inner op has conflicting 'device' attribute, "
                      "got '"
                   << device_str_attr.getValue() << "' but expected '"
                   << launch.getDevice() << "'";
          }
        } else {
          return launch.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                return ResolvedCoordinates.create(resolved);
            }
    
            if (mappings.incompatibleModules.contains(key)) {
                // TODO: We should enhance this warning to list the conflicting dependencies.
                warnings.addIncompatible(String.format(
                    "Cannot determine variant coordinates for dependency '%s' since " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

                    return null;
                }
    
                return buildFailure(configuration, withTaskAdvice, collisions);
            }
    
            /**
             * Throw an exception if any variants have conflicting identities.
             */
            public void assertNoConflicts() {
                for (VariantIdentity identity : byIdentity.keySet()) {
                    List<ConfigurationInternal> collisions = byIdentity.get(identity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    				Plural: "alfa",
    			},
    			expectedNameConflictCondition: acceptedCondition,
    			expectedEstablishedCondition:  installingCondition,
    		},
    		{
    			name: "conflicting, installing before with true condition",
    			in: newCRD("alfa.bravo.com").SpecNames("alfa", "delta-singular", "echo-kind", "foxtrot-listkind", "golf-shortname-1", "hotel-shortname-2").
    				Condition(acceptedCondition).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.cc

      std::optional<jit::DeviceId> maybe_unknown_device;
    
      bool multiple_cpu_devices = false;
      bool multiple_gpu_devices = false;
      bool multiple_unknown_devices = false;
    
      // Returns 'true' if d0 and d1 are conflicting devices. If they are
      // compatible, update d1 with a more specific one.
      // TODO(sanjoy): Cache DeviceNameUtils::ParsedName inside device_info_cache.
      const auto is_multiple_devices =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/go/ast/resolve.go

    	p.error(pos, fmt.Sprintf(format, args...))
    }
    
    func (p *pkgBuilder) declare(scope, altScope *Scope, obj *Object) {
    	alt := scope.Insert(obj)
    	if alt == nil && altScope != nil {
    		// see if there is a conflicting declaration in altScope
    		alt = altScope.Lookup(obj.Name)
    	}
    	if alt != nil {
    		prevDecl := ""
    		if pos := alt.Pos(); pos.IsValid() {
    			prevDecl = fmt.Sprintf("\n\tprevious declaration at %s", p.fset.Position(pos))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config/source.go

    	if len(s.params) > 0 {
    		// Make a copy of params.
    		mergedParams = make(map[string]any, len(params)+len(s.params))
    		for k, v := range params {
    			mergedParams[k] = v
    		}
    
    		// Copy non-conflicting values from this Source.
    		for k, v := range s.params {
    			if _, ok := mergedParams[k]; !ok {
    				mergedParams[k] = v
    			}
    		}
    	}
    
    	return sourceImpl{
    		read:   s.read,
    		params: mergedParams,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.2K bytes
    - Viewed (0)
Back to top