Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for Assembles (0.16 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

    import static org.gradle.api.internal.lambdas.SerializableLambdas.action;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.callable;
    import static org.gradle.plugins.ear.EarPlugin.DEFAULT_LIB_DIR_NAME;
    
    /**
     * Assembles an EAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Ear extends Jar {
        public static final String EAR_EXTENSION = "ear";
    
        private String libDirName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. ReadMe.md

    command line parameters on the first run: 
        
        ./gradlew -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000
    
    ## Important gradle tasks
    
    - `clean` - clean build results
    - `dist` - assembles the compiler distribution into `dist/kotlinc/` folder
    - `install` - build and install all public artifacts into local maven repository
    - `coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [[sec:settings_script]]
    == Settings Scripts
    
    The settings script is either a `settings.gradle` file in Groovy or a `settings.gradle.kts` file in Kotlin.
    
    Before Gradle assembles the projects for a build, it creates a `Settings` instance and executes the settings file against it.
    
    image::author-gradle-3.png[Settings,500,63,align="left"]
    
    As the settings script executes, it configures this `Settings`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        // TODO: Many of the methods below probably belong on a JvmTarget. Features may have many targets
        // and thus many configurations, jar tasks, compile tasks, etc.
    
        /**
         * Get the {@link Jar} task which assembles the resources and compilation outputs into
         * a single artifact.
         *
         * @return A provider which supplies the feature's {@link Jar} task.
         */
        TaskProvider<Jar> getJarTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    > Task :tasks
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    
    Build Setup tasks
    -----------------
    init - Initializes a new Gradle build.
    
    Distribution tasks
    ------------------
    assembleDist - Assembles the main distributions
    
    Documentation tasks
    -------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    The build script of the `docs` subproject (`supprojects/docs/build.gradle`) eventually assembles the three kinds of docs code above to exemplar samples and then tests them with exemplar.
    
    ### `org.gradle.samples` plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

    import org.gradle.testing.base.TestingExtension;
    
    import javax.inject.Inject;
    import java.util.Collections;
    
    
    /**
     * <p>A {@link Plugin} which compiles and tests Java source, and assembles it into a JAR file.</p>
     *
     * This plugin creates a built-in {@link JvmTestSuite test suite} named {@code test} that represents the {@link Test} task for Java projects.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

            String jarTaskName = sourceSet.getJarTaskName();
            if (!tasks.getNames().contains(jarTaskName)) {
                return tasks.register(jarTaskName, Jar.class, jar -> {
                    jar.setDescription("Assembles a jar archive containing the classes of the '" + name + "' feature.");
                    jar.setGroup(BasePlugin.BUILD_GROUP);
                    jar.from(sourceSet.getOutput());
                    if (!capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

     *
     * <p>There is a one-to-one correspondence between a <code>Settings</code> instance and a <code>{@value
     * #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>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/pcln.go

    	ctxt.loader.SetAttrReachable(s, true)
    	ctxt.loader.SetCarrierSym(s, state.carrier)
    	ctxt.loader.SetAttrNotInSymbolTable(s, true)
    	return s
    }
    
    // makePclntab makes a pclntab object, and assembles all the compilation units
    // we'll need to write pclntab. Returns the pclntab structure, a slice of the
    // CompilationUnits we need, and a slice of the function symbols we need to
    // generate pclntab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top