Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 551 for Assembles (0.16 sec)

  1. src/runtime/sys_windows_arm64.s

    	AND	$~1, R3
    	LSL	$3, R3
    	SUB	R3, RSP
    
    	// R4: size of stack arguments (n-8)*8
    	// R5: &args[8]
    	// R6: loop counter, from 0 to (n-8)*8
    	// R7: scratch
    	// R8: copy of RSP - (R2)(RSP) assembles as (R2)(ZR)
    	SUB	$8, R0, R4
    	LSL	$3, R4
    	ADD	$(8*8), R12, R5
    	MOVD	$0, R6
    	MOVD	RSP, R8
    stackargs:
    	MOVD	(R6)(R5), R7
    	MOVD	R7, (R6)(R8)
    	ADD	$8, R6
    	CMP	R6, R4
    	BNE	stackargs
    
    _8args:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

    import org.gradle.util.internal.ConfigureUtil;
    import org.gradle.work.DisableCachingByDefault;
    
    import java.nio.charset.Charset;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.action;
    
    /**
     * Assembles a JAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Jar extends Zip {
    
        public static final String DEFAULT_EXTENSION = "jar";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top