Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Searle (0.09 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[working_with_files]]
    = Working With Files
    
    File operations are fundamental to nearly every Gradle build.
    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:stable]]
    == Stable configuration cache
    
    Working towards the stabilization of configuration caching we implemented some strictness behind a feature flag when it was considered too disruptive for early adopters.
    
    You can enable that feature flag as follows:
    
    ====
    include::sample[dir="snippets/configurationCache/stableFeatureFlag/kotlin",files="settings.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Another common step is to attach all the unit test dependencies to the integration tests as well — via `intTestImplementation.extendsFrom testImplementation` — but that only makes sense if the integration tests require _all_ or nearly all the same dependencies that the unit tests have.
    
    There are a couple of other facets of the example you should take note of:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Alternatively, you might want to enable verification on CI servers but not on local machines.
    
    Gradle actually provides 3 different verification modes:
    
    - `strict`, which is the default.
    Verification fails _as early as possible_, in order to avoid the use of compromised dependencies during the build.
    - `lenient`, which will run the build even if there are verification failures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top