Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for Empty (0.02 sec)

  1. maven-model-builder/src/test/resources/poms/validation/empty-module.xml

    Benjamin Bentmann <******@****.***> 1269519473 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 25 12:17:53 UTC 2010
    - 984 bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-expected.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>empty</artifactId>
        <version>1</version>
      </parent>
      <groupId>inheritance</groupId>
      <artifactId>child</artifactId>
      <version>1</version>
      <url></url>
      <scm>
        <connection></connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-child.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>empty</artifactId>
        <version>1</version>
      </parent>
      <artifactId>child</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-parent.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>inheritance</groupId>
      <artifactId>empty</artifactId>
      <version>1</version>
      <modules>
        <module>child</module>
      </modules>
      <url></url>
      <scm>
        <connection> </connection>
        <developerConnection>  </developerConnection>
        <url></url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/validation/empty-plugin-version.xml

    Benjamin Bentmann <******@****.***> 1259020724 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 23 23:58:44 UTC 2009
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

         *            empty.
         * @param pluginArtifactId The artifact id of the plugin whose configuration should be used, must not be
         *            {@code null} or empty.
         * @param pluginExecutionId The id of a plugin execution whose configuration should be used, may be {@code null} or
         *            empty to use the general plugin configuration.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Event.java

        /**
         * Gets the current project (if any).
         *
         * @return the current project or {@code empty()} if not applicable
         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the current mojo execution (if any).
         *
         * @return the current mojo execution or {@code empty()} if not applicable
         */
        @Nonnull
        Optional<MojoExecution> getMojoExecution();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

        @Nonnull
        <T> T lookup(Class<T> type, String name);
    
        /**
         * Performs a lookup for optional typed component.
         *
         * @param type The component type.
         * @return Optional carrying component or empty optional if no such component.
         * @param <T> The component type.
         * @throws LookupException if there is some provisioning related issue.
         */
        @Nonnull
        <T> Optional<T> lookupOptional(Class<T> type);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ExtensionDescriptorBuilderTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzer.java

            if (!result.hasExceptions()) {
                return Optional.empty();
            }
    
            List<MavenProject> sortedProjects = result.getTopologicallySortedProjects();
    
            boolean hasNoSuccess =
                    sortedProjects.stream().noneMatch(project -> result.getBuildSummary(project) instanceof BuildSuccess);
    
            if (hasNoSuccess) {
                return Optional.empty();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top