Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for assembling (0.19 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for assembling Assembler sources for a native runtime.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 734 bytes
    - Viewed (0)
  2. platforms/jvm/ear/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for assembling web application EAR files"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        api(project(":base-services"))
        api(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/asmb.go

    // license that can be found in the LICENSE file.
    
    package ld
    
    import (
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"runtime"
    	"sync"
    )
    
    // Assembling the binary is broken into two steps:
    //   - writing out the code/data/dwarf Segments, applying relocations on the fly
    //   - writing out the architecture specific pieces.
    //
    // This function handles the first part.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/war/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for assembling JVM web application WAR files"
    
    dependencies {
        api(project(":language-jvm"))
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/ResolvedConfigurationDependencyGraphVisitor.java

    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    
    /**
     * Adapts a {@link ResolvedConfigurationBuilder}, which is responsible for assembling the resolved configuration result, to a {@link DependencyGraphVisitor} and
     * {@link DependencyArtifactsVisitor}.
     */
    public class ResolvedConfigurationDependencyGraphVisitor implements DependencyArtifactsVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[ear_plugin]]
    = The Ear Plugin
    
    The Ear plugin adds support for assembling web application EAR files.
    It adds a default EAR archive task.
    It doesn't require the <<java_plugin.adoc#java_plugin,Java plugin>>, but for projects that also use the Java plugin it disables the default JAR archive generation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    // limitations under the License.
    
    [[war_plugin]]
    = The War Plugin
    
    The War plugin extends the <<java_plugin.adoc#java_plugin,Java plugin>> to add support for assembling web application WAR files.
    It disables the default JAR archive generation of the Java plugin and adds a default WAR archive task.
    
    [[sec:war_usage]]
    == Usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                return new DefaultLanguageTransformContainer(collectionCallbackActionDecorator);
            }
    
            // Finalizing here, as we need this to run after any 'assembling' task (jar, link, etc) is created.
            // TODO: Convert this to `@BinaryTasks` when we model a `NativeAssembly` instead of wiring compile tasks directly to LinkTask
            @Finalize
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:dependents]]
    == Assembling or building dependents
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

     * #DEFAULT_SETTINGS_FILE}</code> settings file. Before Gradle assembles the projects for a build, it creates a
     * <code>Settings</code> instance and executes the settings file against it.</p>
     *
     * <h3>Assembling a Multi-Project Build</h3>
     *
     * <p>One of the purposes of the <code>Settings</code> object is to allow you to declare the projects which are to be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top