Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Packaged (0.23 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/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LexerTest.kt

                ),
                equalTo(
                    Packaged(
                        null,
                        LexedScript(
                            listOf(),
                            listOf(),
                            listOf()
                        )
                    )
                )
            )
        }
    
        @Test
        fun `extracts package name`() {
            assertThat(
                lex("\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

        UnexpectedBlock("Unexpected `$identifier` block found. `$identifier` can not appear before `$expectedFirstIdentifier`.")
    
    
    data class Packaged<T>(
        val packageName: String?,
        val document: T
    ) {
        fun <U> map(transform: (T) -> U): Packaged<U> = Packaged(
            packageName,
            document = transform(document)
        )
    }
    
    
    internal
    data class LexedScript(
        val comments: List<IntRange>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/ArtifactResolver.java

         */
        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: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(ProjectInternal.STATUS_ATTRIBUTE, "release")
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "a library for use during compile-time, with a release status, compatible with Java 11, packaged as a jar"
        }
    
        def "describes a library with MAX_VALUE target JVM version"() {
            when:
            attributes.attribute(Usage.USAGE_ATTRIBUTE, named(Usage, "java-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/README.adoc

    This sample shows how to create a plugin with a task that accepts arguments.
    The plugin is packaged via an included build.
    
    ====
    include::sample[dir="kotlin",files="build.gradle.kts[];settings.gradle.kts[]"]
    include::sample[dir="groovy",files="build.gradle[];settings.gradle[]"]
    ====
    
    To execute the sample task:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1020 bytes
    - Viewed (0)
Back to top