Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 596 for Constraint (0.25 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/DefaultVcsVersionWorkingDirResolver.java

        private VersionRef selectVersionFromRepository(VersionControlRepositoryConnection repository, VersionConstraint constraint) {
            // TODO: match with status, order versions correctly
    
            if (constraint.getBranch() != null) {
                return repository.getBranch(constraint.getBranch());
            }
    
            String version = constraint.getRequiredVersion();
            VersionSelector versionSelector = versionSelectorScheme.parseSelector(version);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/testdata/typeset.go

            _[~t] t
            _[~t|t] t
            _[t|~t] t
            _[~t|~t] t
    )
    
    type (
            _[_ t, t /* ERROR missing type constraint */ ] t
            _[_ ~t, t /* ERROR missing type constraint */ ] t
            _[_ t, /* ERROR missing type parameter name */ ~t] t
            _[_ ~t, /* ERROR missing type parameter name */ ~t] t
    
            _[_ t|t, /* ERROR missing type parameter name */ t|t] t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingState.java

         * Indicates if the lock state must be strictly validated.
         *
         * If {@code true}, each locked dependency is added as a strict constraint,
         * and the resolution result must exactly match the set of locked dependencies.
         *
         * If {@code false}, each locked dependency is added a regular (lenient) constraint,
         * and the resolution result is not verified against the set of locked dependencies.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyConstraintSet.java

                    ((MutationValidator) clientConfiguration).validateMutation(MutationValidator.MutationType.DEPENDENCY_CONSTRAINT_ATTRIBUTES)
                );
            }
            return addInternalDependencyConstraint(dependencyConstraint);
        }
    
        // For internal use only, allows adding a dependency constraint without issuing a deprecation warning
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/validation/CustomSize.java

    import javax.validation.Constraint;
    import javax.validation.Payload;
    
    import org.codelibs.core.lang.StringUtil;
    
    @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
    @Retention(RUNTIME)
    @Documented
    @Constraint(validatedBy = CustomSizeValidator.class)
    public @interface CustomSize {
    
        String message() default "{javax.validation.constraints.Size.message}";
    
        Class<?>[] groups() default {};
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_variables.td

    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    def HasSupportedElementType :
      Constraint<CPred<"HasSupportedElementType($0.getDefiningOp())">>;
    
    def IsSupportedElementType :
      Constraint<CPred<"IsSupportedElementType($0.getType().cast<ShapedType>())">>;
    
    def LegalizeVarHandle : Pat<
      (TF_VarHandleOp:$result $container, $shared_name),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 16 23:20:46 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedDependencyResult.java

                                               boolean constraint,
                                               ResolvedComponentResult selectedComponent,
                                               ResolvedVariantResult selectedVariant,
                                               ResolvedComponentResult from) {
            super(requested, from, constraint);
            this.selectedComponent = selectedComponent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultUnresolvedDependencyResult.java

        public DefaultUnresolvedDependencyResult(ComponentSelector requested, boolean constraint, ComponentSelectionReason reason,
                                                 ResolvedComponentResult from, ModuleVersionResolveException failure) {
            super(requested, from, constraint);
            this.reason = reason;
            this.failure = failure;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenGoogleDependencyResolveIntegrationTest.groovy

                    into "\$buildDir/libs"
                }
            """
    
            when:
            succeeds 'copyLibs'
    
            then:
            file('build/libs').assertHasDescendants('constraint-layout-1.0.2.aar', 'constraint-layout-solver-1.0.2.jar')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/examples/inference.go

    	// Alternatively, the 2nd type argument can be inferred
    	// from the first one through constraint type inference.
    	var ss []string
    	_ = related2[string]
    	related2[string]("foo", ss)
    
    	// A type argument may be inferred from a value argument
    	// and then help infer another type argument via constraint
    	// type inference. Untyped arguments are always considered
    	// last.
    	related2(1.2, []float64{})
    	related2(1.0, []int{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top