Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Searle (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Keeping up with Gradle version upgrades is low risk because the Gradle team ensures backwards compatibility between minor versions of Gradle.
    Staying up-to-date also makes transitioning to the next major version easier, since you'll get early deprecation warnings.
    
    === Java
    
    Gradle runs on the Java Virtual Machine (JVM). Java performance improvements often benefit Gradle.
    For the best Gradle performance, use the latest version of Java.
    
    === Plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    // R3 = *ThreadState
    // R4 = TODO: What's this supposed to be?
    // R5 = caller pc
    // R6 = addr of incoming arg list
    // R8 contains addr of target function.
    TEXT	racecallatomic<>(SB), NOSPLIT, $0-0
    	// Trigger SIGSEGV early if address passed to atomic function is bad.
    	MOVD	(R6), R7	// 1st arg is addr
    	MOVB	(R7), R9	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    The only Unicode values that are explicitly prohibited are `\`, `/` and any ISO control character. Supplied values are validated early in publication.
    
    [[sec:modifying_the_generated_pom]]
    === Customizing the generated POM
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    `GRADLE_HOME`::
    Installation directory for Gradle.
    +
    Can be used to specify a local Gradle version instead of using the wrapper.
    +
    You can add `GRADLE_HOME/bin` to your `PATH` for specific applications and use cases (such as testing an early release for Gradle).
    
    `JAVA_OPTS`::
    Used to pass JVM options and custom settings to the JVM.
    
    `GRADLE_OPTS`::
    Specifies JVM arguments to use when starting the Gradle client VM.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Gradle installs the downloaded JDKs in the <<directory_layout.adoc#dir:gradle_user_home,Gradle User Home>>.
    
    NOTE: Gradle only downloads JDK versions for GA releases.
    There is no support for downloading early access versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    +
    image::intellij-script-dependencies-reload.png[Reload script dependencies]
    
    We recommend that you _disable automatic build import_, but _enable automatic reloading of script dependencies_.
    That way you get early feedback while editing Gradle scripts and control over when the whole build setup gets synchronized with your IDE.
    
    === Troubleshooting
    
    The IDE support is provided by two components:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Previously, this logic would have omitted the two above noted attributes entirely, while now the same logic will copy the attributes and finalize the project's Java toolchain.
    To avoid early toolchain finalization, attribute-copying logic should be updated to query the source Configuration's attributes lazily:
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    Actions are added to a Task via the `doFirst{}` and `doLast{}` closures.
    
    A Task can depend on other tasks.
    
    == Step 2. Register and Configure Tasks
    
    Early on in the tutorial, we registered and configured `task1` in the `app` build script:
    
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    [source,kotlin]
    ----
    tasks.register("task1"){  // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    [[init_scripts]]
    = Initialization Scripts
    
    Initialization scripts are scripts that run before the build script is executed.
    They allow you to customize the build environment or configure settings early in the build.
    
    Initialization scripts can be useful for setting up common configurations, such as repositories, plugins, or custom tasks, across multiple projects.
    
    [[sec:basic_usage]]
    == Using an init script
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top