Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 185 for make (0.06 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    * All of that data, including the repository source and potential misses are then stored in the <<#sec:dependency_cache>>.
    
    [NOTE]
    ====
    The penultimate point above is what can make the integration with <<declaring_repositories.adoc#sec:case-for-maven-local,Maven Local>> problematic.
    As it is a cache for Maven, it will sometimes miss some artifacts of a given module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    - Initialize a Java project
    - Review the directory layout
    - Run a Java application
    - Produce a Build Scan
    - Bundle the application in an archive
    ****
    
    [[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: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_dependency_constraint]]
    == Dependency constraint
    
    A dependency constraint defines requirements that need to be met by a module to make it a valid resolution result for the dependency.
    For example, a dependency constraint can narrow down the set of supported module versions.
    Dependency constraints can be used to express such requirements for transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    // TODO figure this out
    Libraries make a distinction between private (implementation details) and public (exported to consumer) headers.
    
    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    Note that using input artifact dependencies in a transform has performance implications, only inject them when you really need them.
    
    Moreover, artifact transforms can make use of the <<build_cache.adoc#build_cache,build cache>> for their outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. src/runtime/sys_openbsd_riscv64.s

    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in R0.
    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$8
    	MOV	0(X10), X10		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top