Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for make (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    [[build_environment]]
    = Configuring the Build Environment
    
    Configuring the build environment is a powerful way to customize the build process.
    There are many mechanisms available.
    By leveraging these mechanisms, you can make your Gradle builds more flexible and adaptable to different environments and requirements.
    
    == Available mechanisms
    
    Gradle provides multiple mechanisms for configuring the behavior of Gradle itself and specific projects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    . certain vendors take precedence over others; their ordering (from the highest priority to lowest):
    .. ADOPTIUM
    .. ADOPTOPENJDK
    .. AMAZON
    .. APPLE
    .. AZUL
    .. BELLSOFT
    .. GRAAL_VM
    .. HEWLETT_PACKARD
    .. IBM
    .. JETBRAINS
    .. MICROSOFT
    .. ORACLE
    .. SAP
    .. TENCENT
    .. everything else
    . higher major versions take precedence over lower ones
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. helm/minio/values.yaml

      ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.html#access-management
      ## NOTE: this will fail if LDAP is enabled in your MinIO deployment
      ## make sure to disable this if you are using LDAP.
      - accessKey: console
        secretKey: console123
        policy: consoleAdmin
      # Or you can refer to specific secret
      #- accessKey: externalSecret
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    To let Gradle know that we are implementing a task, we extend the `DefaultTask` class that comes with Gradle.
    It's also beneficial to make our task class `abstract` because Gradle will handle many things automatically:
    
    ====
    [.multi-language-sample]
    =====
    .buildSrc/src/main/kotlin/GenerateReportTask.kt
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> that specifies the host address to listen on or connect to when debug is enabled.
    In the server mode on Java 9 and above, passing `*` for the host will make the server listen on all network interfaces.
    By default, no host address is passed to JDWP, so on Java 9 and above, the loopback address is used, while earlier versions listen on all interfaces.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top