Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 1,131 for Constraint (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                    Object dependencyValue = mergeError.getRightValue();
                    return "Inconsistency between attributes of a constraint and a dependency, on attribute '" + attribute + "' : dependency requires '" + dependencyValue + "' while constraint required '" + constraintValue + "'";
                });
                return;
            } catch (Exception t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

      }
    
      @Override
      protected Map<Class<? extends @NonNull B>, B> delegate() {
        return delegate;
      }
    
      /**
       * Wraps the {@code setValue} implementation of an {@code Entry} to enforce the class constraint.
       */
      private static <B extends @Nullable Object> Entry<Class<? extends @NonNull B>, B> checkedEntry(
          final Entry<Class<? extends @NonNull B>, B> entry) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. guava/javadoc-link/checker-framework/package-list

    org.checkerframework.framework.util.defaults
    org.checkerframework.framework.util.dependenttypes
    org.checkerframework.framework.util.element
    org.checkerframework.framework.util.typeinference
    org.checkerframework.framework.util.typeinference.constraint
    org.checkerframework.framework.util.typeinference.solver
    org.checkerframework.javacutil
    org.checkerframework.javacutil.dist
    org.checkerframework.javacutil.trees
    org.eclipse.jdt.annotation
    org.eclipse.jgit.annotations
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentSelectionContext.java

         */
        void rejectedByRule(RejectedByRuleVersion id);
    
        /**
         * Adds a candidate version that matched the provided selector, but was rejected by some constraint.
         */
        void rejectedBySelector(ModuleComponentIdentifier id, VersionSelector versionSelector);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                // We use component-level precision for dependency constraints since it is hard to implement correctly.
                // To publish a dependency constraint to Maven, we would need to publish a constraint for _each_ coordinate
                // that the component could be resolved to. Resolution results do not support this type of query, so this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. pkg/test/util/structpath/instance.go

    	})
    }
    
    // Check executes the set of constraints for this selection
    // and returns the first error encountered, or nil if all constraints
    // have been successfully met. All constraints are removed after them
    // check is performed.
    func (i *Instance) Check() error {
    	// After the check completes, clear out the constraints.
    	defer func() {
    		i.constraints = i.constraints[:0]
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. test/typeparam/cons.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    // Overriding the predeclare "any", so it can be used as a type constraint or a type
    // argument
    type any interface{}
    
    type Function[a, b any] interface {
    	Apply(x a) b
    }
    
    type incr struct{ n int }
    
    func (this incr) Apply(x int) int {
    	return x + this.n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 23:41:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

            failure.hasErrorOutput("Dependencies can not be declared against the `compile` configuration.")
        }
    
        def "fail if a dependency constraint is declared on a configuration which can not be declared against"() {
            given:
            buildFile << """
                dependencies {
                    constraints {
                        compile 'module:foo:1.0'
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

      "quant::CastQuantizedTypeAttrFromExpressedType($_builder, $0, $1.getType(), " # i # ")">;
    
    class CanUpdateShapeWithAxis<int i> : Constraint<
      CPred<"quant::CastQuantizedTypeAttrFromExpressedType($_builder, $0, $1.getType(), " # i # ")">>;
    
    class UsedBy<string op> : Constraint<
      CPred<"llvm::isa<mlir::TFL::" # op # "Op>(*$0.getUsers().begin())">>;
    
    // When the op is passing-through, the output types of the quantized ops need
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyGradleModuleMetadataPublishIntegrationTest.groovy

                dependency('org:foo:1.0') {
                    hasAttribute('custom', 'foo')
                }
                constraint('org:bar:2.0') {
                    hasAttribute('nice', true)
                }
                noMoreDependencies()
            }
        }
    
        def "publishes component with strict version constraints"() {
            settingsFile << "rootProject.name = 'root'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 30.4K bytes
    - Viewed (0)
Back to top