Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Packaged (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeActionExecutor.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildTreeActionExecutor {
        /**
         * Runs the given action and returns the result. Failures should be packaged in the result.
         * When this method returns, all user code will have completed, including 'build finished' hooks.
         */
        BuildActionRunner.Result execute(BuildAction action, BuildTreeContext buildTreeContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         */
        String MODULAR_PROCESSOR = "modular-processor";
    
        /**
         * Artifact type name for source code packaged in a JAR file.
         */
        String JAVA_SOURCE = "java-source";
    
        /**
         * Artifact type name for javadoc packaged in a JAR file.
         */
        String JAVADOC = "javadoc";
    
        /**
         * Artifact type name for a Maven plugin.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/LifecycleProvider.java

    /**
     * Interface that can be provided by the plugin to wire in custom lifecycles
     * leveraged using the {@link org.apache.maven.api.plugin.annotations.Execute}
     * annotation.  If a {@code META-INF/maven/lifecycle.xml} file is packaged
     * in the plugin, Maven will provide a default implementation that will parse
     * the file and return the contained lifecycle definitions.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

         */
        ComponentArtifactResolveMetadata getArtifactMetadata();
    
        /**
         * Discovers the set of artifacts belonging to this component, with the type specified. Does not download the artifacts. Any failures are packaged up in the result.
         */
        void resolveArtifactsWithType(ArtifactResolver artifactResolver, ArtifactType artifactType, BuildableArtifactSetResolveResult result);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

    """
    
            given:
            executer.useOnlyRequestedJvmOpts()
    
            expect:
            succeeds()
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        def "JVM args from gradle.properties packaged in distribution override defaults"() {
            setup:
            requireIsolatedGradleDistribution()
            executer.useOnlyRequestedJvmOpts()
    
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/PlanExecutor.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.Action;
    import org.gradle.internal.build.ExecutionResult;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * Responsible for running the work of a build tree, packaged as zero or more {@link ExecutionPlan} instances.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/internal/bootstrap_test/reboot_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bootstrap_test verifies that the current GOROOT can be used to bootstrap
    // itself.
    package bootstrap_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    agentsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent Java agents packaged in the distribution (lib/agents/*.jar)"
    
    coreRuntimeOnly.withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

        }
    
        private static void describeLibraryElements(Object le, StringBuilder sb) {
            String name = toName(le);
            switch (name) {
                case LibraryElements.JAR:
                    sb.append("packaged as a jar");
                    break;
                case LibraryElements.CLASSES:
                    sb.append("preferably in the form of class files");
                    break;
                case LibraryElements.RESOURCES:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    However, they can become hard to maintain as the build script grows in size and complexity.
    
    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    They offer better performance and maintainability compared to script plugins, and they can be reused across different projects.
    You can also write them in Groovy DSL but that is not recommended.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top