Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Packaged (0.25 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

        /**
         * The C++ API of a library, packaged as header directories.
         *
         * @since 4.1
         */
        String C_PLUS_PLUS_API = "cplusplus-api";
    
        /**
         * The native link files of a library, packaged as static or shared library.
         *
         * @since 4.1
         */
        String NATIVE_LINK = "native-link";
    
        /**
         * The native runtime files of a library, packaged as a shared library.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ConfigurationResolver.java

        /**
         * Traverses enough of the graph to calculate the build dependencies of the given resolve context. All failures are packaged in the result.
         */
        ResolverResults resolveBuildDependencies(ResolveContext configuration);
    
        /**
         * Traverses the full dependency graph of the given resolve context. All failures are packaged in the result.
         */
        ResolverResults resolveGraph(ResolveContext resolveContext) throws ResolveException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 16:25:01 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionExecutor.java

     * limitations under the License.
     */
    package org.gradle.launcher.exec;
    
    import org.gradle.internal.invocation.BuildAction;
    
    public interface BuildActionExecutor<PARAMS, CONTEXT> {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ModuleComponentRepositoryAccess.java

         * Resolves a set of artifacts belonging to the given component, with the type specified. Any failures are packaged up in the result.
         */
        void resolveArtifactsWithType(ComponentArtifactResolveMetadata component, ArtifactType artifactType, BuildableArtifactSetResolveResult result);
    
        /**
         * Resolves the given artifact. Any failures are packaged up in the result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

    import org.gradle.api.model.ObjectFactory;
    
    import javax.inject.Inject;
    import java.util.Optional;
    import java.util.Set;
    
    public abstract class JavaEcosystemSupport {
        /**
         * The Java API of a library, packaged as a JAR only. Must not include classes directories.
         *
         * Available for compatibility with previously published modules.  Should <strong>NOT</strong> be used for new publishing.
         * No plans for permanent removal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            boolean packaged = false;
            for (String phase : getLifecycles(project)) {
                switch (phase) {
                    case "clean":
                        packaged = false;
                        break;
                    case "package":
                    case "install":
                    case "deploy":
                        packaged = true;
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

       > Could not resolve org.lwjgl:lwjgl:3.2.3.
         Required by:
             project :
          > The consumer was configured to find a library for use during runtime, compatible with Java 11, packaged as a jar, preferably optimized for standard JVMs, and its dependencies declared externally, as well as attribute 'org.gradle.native.operatingSystem' with value 'windows'. There are several available matching variants of org.lwjgl:lwjgl:3.2.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                    add("$groovyGroup:groovy-templates") {
                        version { prefer(groovyVersion) }
                        because("We use the packaged groovy")
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/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: Wed Mar 06 00:00:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

     */
    @ServiceScope(Scope.Global.class)
    public interface ModuleRegistry {
        /**
         * Locates an external module by name. An external module is one for which there is no meta-data available. Assumed to be packaged as a single jar file, and to have no runtime dependencies.
         *
         * @return the module. Does not return null.
         */
        Module getExternalModule(String name) throws UnknownModuleException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top