Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 489 for Assembles (0.42 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `assemble`::
    _Depends on_: `jar`
    +
    Aggregate task that assembles all the archives in the project. This task is added by the Base Plugin.
    
    `check`::
    _Depends on_: `test`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/encoding/base64/base64.go

    	}
    
    	for si < len(src) {
    		var ninc int
    		si, ninc, err = enc.decodeQuantum(dst[n:], src, si)
    		n += ninc
    		if err != nil {
    			return n, err
    		}
    	}
    	return n, err
    }
    
    // assemble32 assembles 4 base64 digits into 3 bytes.
    // Each digit comes from the decode map, and will be 0xff
    // if it came from an invalid character.
    func assemble32(n1, n2, n3, n4 byte) (dn uint32, ok bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `assemble` - Task (lifecycle)::
    Aggregate task that assembles the debug variant of the tested component for the current host (if present) in the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:swift_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The Swift Application Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the Swift Application Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Depends on: `link__Variant__`
    ::
    Aggregates tasks that assemble the specific variant of this application.
    
    [[sec:cpp_application_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The {cpp} Application Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> - which the {cpp} Application Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    ::
    Aggregates tasks that assemble the specific variant of this library.
    
    [[sec:swift_library_lifecycle_tasks]]
    === Lifecycle Tasks
    
    The Swift Library Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the Swift Library Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    The XCTest Plugin attaches some of its tasks to the standard lifecycle tasks documented in the <<base_plugin.adoc#base_plugin,Base Plugin chapter>> — which the XCTest Plugin applies automatically:
    
    `assemble` - Task (lifecycle)::
    Aggregate task that assembles the debug variant of the tested component for the current host (if present) in the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  10. 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)
Back to top