Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for bounds (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

        }
    
        public static <T> Provider<T> seededKeyProvider(Class<? extends T> clazz) {
            return () -> {
                throw new IllegalStateException("No instance of " + clazz.getName() + " is bound to the session scope.");
            };
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml

      <modules>
        <module>child</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- this checks handling of a plugin which is implicitly bound to the lifecycle -->
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-resources-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
              <configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

             */
            CLI,
    
            /**
             * An execution that originates from a goal bound to a lifecycle phase.
             */
            LIFECYCLE,
        }
    
        private Source source = Source.LIFECYCLE;
    
        /**
         * The phase may or may not have been bound to a phase but once the plan has been calculated we know what phase
         * this mojo execution is going to run in.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

            result.setVersionConstraint(versionConstraint);
    
            if (versionConstraint.getRange() == null) {
                result.addVersion(versionConstraint.getVersion());
            } else {
                VersionRange.Bound lowerBound = versionConstraint.getRange().getLowerBound();
                if (lowerBound != null
                        && lowerBound.equals(versionConstraint.getRange().getUpperBound())) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

            // however, SISU visibility filtering can only happen when an explicit
            // lookup is performed. The whole problem here is caused by "project extensions"
            // which are bound to a project's classloader, without any clear definition
            // of a "project scope"
            LifecycleMapping lifecycleMapping =
                    lookup.lookupOptional(LifecycleMapping.class, id).orElse(null);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelResolver.java

                    // Message below is checked for in the MNG-2199 core IT.
                    throw new ModelResolverException(
                            String.format("The requested version range '%s' does not specify an upper bound", version),
                            groupId,
                            artifactId,
                            version);
                }
                List<Version> versions = session.resolveVersionRange(coord);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top