Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for make (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    - Review Gradle's project structure
    - Open the project in IntelliJ IDEA
    - Explore Gradle files and build scripts
    - Understand the Gradle wrapper
    ****
    
    [[part1_begin]]
    == Step 0. Before you Begin
    
    1. Make sure you have <<installation.adoc#installation,Gradle installed>>.
    
    2. Install link:https://www.jetbrains.com/idea/download/[IntelliJ IDEA].
    The Community Edition is a free version of IntelliJ IDEA.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    /*
     *  go-routine
     */
    
    // void gogo(Gobuf*)
    // restore state from Gobuf; longjmp
    TEXT runtimeĀ·gogo(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD	buf+0(FP), R5
    	MOVD	gobuf_g(R5), R6
    	MOVD	0(R6), R4	// make sure g != nil
    	BR	gogo<>(SB)
    
    TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
    	MOVD	R6, g
    	BL	runtimeĀ·save_g(SB)
    
    	MOVD	gobuf_sp(R5), R1
    	MOVD	gobuf_lr(R5), R31
    #ifndef GOOS_aix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Then Gradle puts Jars with module information on the classpath, even if you have a `module-info.java` in your source set.
    This corresponds to the behaviour of Gradle versions <7.0.
    
    To make this work, you need to set `modularity.inferModulePath = false` on the Java extension (for all tasks) or on individual tasks.
    
    .Disable Gradle's module path inference
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Publishing Spring Boot applications
    
    Starting from Gradle 6.2, Gradle performs a sanity check before uploading, to make sure you don't upload stale files (files produced by another build).
    This introduces a problem with Spring Boot applications which are uploaded using the `components.java` component:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    In the absence of dependency substitution rules, Gradle knows that an external module dependency will never transitively reference a project dependency.
    This makes it easy to determine the full set of project dependencies for a configuration through simple graph traversal.
    With this functionality, Gradle can no longer make this assumption, and must perform a full resolve in order to determine the project dependencies.
    
    [[sub:module_to_project_substitution]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    include::sample[dir="snippets/tutorial/groovy/groovy",files="build.gradle[tags=closureDelegates]"]
    ====
    
    [[script-default-imports]]
    == Default imports
    
    To make build scripts more concise, Gradle automatically adds a set of import statements to scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    ...
    ----
    
    It is clear the `guava` dependency has been updated to version `30.0` and the transitive dependencies have changed as well.
    
    == Step 7. Run the Java app
    Finally, make sure everything is working using the `run` task, either in your terminal or IDE:
    ----
    ./gradlew run
    
    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    > Task :app:classes UP-TO-DATE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    ----
    
    IMPORTANT: When writing unit tests, it's important to test boundary conditions and various forms of invalid input.
    Try to extract as much logic as possible from classes that use the Gradle API to make it testable as unit tests.
    It will result in maintainable code and faster test execution.
    
    [[sec:writing_tests_for_your_plugin]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    * add `org.gradle.daemon=false` to the `$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`/gradle.properties` file
    * add the flag `-Dorg.gradle.daemon=false` to the `GRADLE_OPTS` environment variable
    
    Don't forget to make sure your JVM arguments and `GRADLE_OPTS` / `JAVA_OPTS` match if you want to completely disable the Daemon and not simply invoke a single-use one.
    
    [[sec:stopping_an_existing_daemon]]
    == Stop Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::sample[dir="snippets/ant/useAntType/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/ant/useAntType/groovy",files="build.gradle"]
    ====
    
    [[sec:using_custom_ant_tasks]]
    === Using custom Ant tasks
    
    To make custom tasks available in your build, use the `taskdef` (usually easier) or `typedef` Ant task, just as you would in a `build.xml` file.
    You can then refer to the custom Ant task as you would a built-in Ant task:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top