Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Packaged (0.51 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    This sample shows how to create a plugin with tasks that have dependency resolution results as inputs.
    The plugin is packaged via an included build and is demonstrated on a multi-project build for a Java application.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/register.go

    var (
    	// SchemeBuilder points to a list of functions added to Scheme.
    	SchemeBuilder      = runtime.NewSchemeBuilder(addKnownTypes)
    	localSchemeBuilder = &SchemeBuilder
    	// AddToScheme is a common registration function for mapping packaged scoped group & version keys to a scheme.
    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 20:24:09 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         */
        public abstract DirectoryProperty getDocumentationRenderedRoot();
    
        /**
         * The collection of rendered documentation.  This is everything laid out as it would be deployed/packaged.
         */
        public abstract ConfigurableFileCollection getRenderedDocumentation();
    
        // These are all helper methods for configuring the parts of the documentation (DSL ref, javadoc, user manual, etc).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 08:52:40 UTC 2023
    - 4.4K 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