Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,131 for Constraint (0.57 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

            }
    
            private boolean isNotRequiredVersionOnly(VersionConstraint constraint) {
                return !constraint.getPreferredVersion().isEmpty()
                    || !constraint.getStrictVersion().isEmpty()
                    || !constraint.getRejectedVersions().isEmpty()
                    || constraint.getBranch() != null;
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `group`: The group of the dependency constraint.
    - `module`: The module of the dependency constraint.
    - `version`: optional. The version constraint of the dependency constraint.
    - `reason`: optional. An explanation of why the constraint is used. It can typically be used to explain why a specific version is rejected or from where a platform comes from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. 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)
  8. src/crypto/x509/parser.go

    				}
    
    				// If the constraint contains an @ then
    				// it specifies an exact mailbox name.
    				if strings.Contains(constraint, "@") {
    					if _, ok := parseRFC2821Mailbox(constraint); !ok {
    						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
    					}
    				} else {
    					// Otherwise it's a domain name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top