Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for content_es (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

         | Is JDK:             true
         | Detected by:        environment variable 'JDK16'
    
     + Oracle JDK 1.7.0_80
         | Location:           /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre
         | Language Version:   7
         | Vendor:             Oracle
         | Architecture:       x86_64
         | Is JDK:             false
         | Detected by:        MacOS java_home
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@PathSensitive`
    |Property is one or more files and only the given part of the file path is important
    
    |`@IgnoreEmptyDirectories`
    |Used with `@InputFiles` or `@InputDirectory` to instruct Gradle to track only changes to the contents of directories and not differences in the directories themselves.
    
    |`@NormalizeLineEndings`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Running all checks
    It is common for _all_ verification tasks, including tests and linting, to be executed using the `check` task:
    
    ----
    $ gradle check
    ----
    
    === Cleaning outputs
    You can delete the contents of the build directory using the `clean` task. Doing so will cause pre-computed outputs to be lost, causing significant additional build time for the subsequent task execution:
    
    ----
    $ gradle clean
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    The method call returns the Ant data type, which you can use directly in your build script.
    In the following example, we create an Ant `path` object, then iterate over the contents of it:
    
    ====
    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]]
    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