Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,278 for Building (0.17 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import org.apache.maven.building.Source;
    
    /**
     * Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.toolchain.building;
    
    import java.util.List;
    
    import org.apache.maven.building.Problem;
    import org.apache.maven.toolchain.model.PersistedToolchains;
    
    /**
     * Collects the output of the toolchains builder.
     *
     * @since 3.3.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/UrlModelSource.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import java.net.URL;
    
    import org.apache.maven.building.UrlSource;
    
    /**
     * Wraps an ordinary {@link URL} as a model source.
     *
     *
     * @deprecated instead use {@link UrlSource}
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

     */
    @Incubating
    public interface BuildableComponentSpec extends Buildable, ComponentSpec {
        /**
         * Returns the task responsible for building this component.
         */
        @Nullable
        Task getBuildTask();
    
        /**
         * Specifies the task responsible for building this component.
         */
        void setBuildTask(@Nullable Task buildTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.maven.model.Model;
    
    /**
     * A simple model problem collector for testing the model building components.
     *
     */
    public class SimpleProblemCollector implements ModelProblemCollector {
        private Model model;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 11 16:17:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppApplicationProjectInitDescriptor.java

            buildScriptBuilder
                .plugin(
                    "Apply the cpp-application plugin to add support for building C++ executables",
                    "cpp-application")
                .plugin("Apply the cpp-unit-test plugin to add support for building and running C++ test executables",
                    "cpp-unit-test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/VisitedGraphResults.java

     * Models the result of resolving dependency graph. Provides access to the root
     * of the dependency graph, as well as access to any failures that occurred while
     * building the graph.
     */
    public interface VisitedGraphResults {
    
        /**
         * Returns true if any failures occurred while building these results.
         */
        boolean hasAnyFailure();
    
        /**
         * Visits all failures that occurred while resolving the graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        Optional<Project> getProject();
    
        /**
         * Gets the problems that were encountered during the project building.
         *
         * @return the problems that were encountered during the project building, can be empty but never {@code null}
         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/CommonSchemaUtils.kt

    
    /**
     * Defines configuring lambdas for schema building purposes as one of:
     * * Kotlin function types, such as `(Foo) -> Unit` or `Foo.() -> Unit`
     * * Gradle type `Action<in Foo>`
     *
     * This should be the only [ConfigureLambdaHandler] used across Declarative DSL schema building code in Gradle,
     * so that all Declarative DSL schemas are consistent.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:44:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/validation/DefaultSettingsValidator.java

    import org.apache.maven.api.services.BuilderProblem;
    import org.apache.maven.api.services.SettingsBuilder;
    import org.apache.maven.settings.Settings;
    import org.apache.maven.settings.building.SettingsProblem.Severity;
    import org.apache.maven.settings.building.SettingsProblemCollector;
    
    /**
     */
    @Named
    @Singleton
    public class DefaultSettingsValidator implements SettingsValidator {
    
        private static final String ID = "[\\w.-]+";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top