Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 206 for light (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Another particularly important configuration element is link:{groovyDslPath}/org.gradle.api.artifacts.ResolutionStrategy.html[resolutionStrategy], which can be accessed from dependency configurations.
    This provides many of the features you might get from Ivy's conflict managers and is a powerful way to control transitive dependencies and caching.
    +
    Some Ivy configuration options have no equivalent in Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    It is required because the settings file defines which projects are taking part in a <<multi_project_builds.adoc#multi_project_builds,multi-project build>>.
    Besides defining included projects, you might need it to <<organizing_gradle_projects.adoc#organizing_gradle_projects,add libraries to your build script classpath>>.
    
    The following example shows a standard Gradle project layout:
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                tasks.register<CheckDeps>("checkDeps") {
                    files.from(configurations.compileClasspath)
                    expected.set(listOf("lib-core-1.0.jar", "lib-ext-1.0.jar"))
                }
                // Might be worth checking constraints too? Not sure if necessary because the Groovy DSL version covers that
                // and the selected versions above would be wrong.
            """
    
            expect:
            succeeds ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    The same applies to the scenario in which something in the _buildSrc_ directory changes, which invalidates build-script caching.
    Builds with slow configuration time might affect the IDE responsiveness, please check out the <<performance.adoc#performance_gradle,documentation on Gradle performance>>.
    * You must run Gradle with Java 8 or higher. Java 7 is not supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * On close, we remove our details from info region and release the exclusive lock on the state region.
             * <br><br>
             *
             * Note: In the implementation we use {@link java.nio.channels.FileLock} that is tight to a JVM process, not a thread.
             */
            private LockState lock(LockMode lockMode) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // that our format is used.
      //
      // The second argument of DefaultPrintTo() is needed to bypass a bug
      // in Symbian's C++ compiler that prevents it from picking the right
      // overload between:
      //
      //   PrintTo(const T& x, ...);
      //   PrintTo(T* x, ...);
      DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    Composite (include) builds are great for separating build logic (i.e., convention plugins) or testing systems (i.e., patching a library)
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    **Step 3 - Configure your system environment**
    
    To install Gradle, the path to the unpacked files needs to be in your Path.
    
    In **File Explorer** right-click on the `This PC` (or `Computer`) icon, then click `Properties` -> `Advanced System Settings` -> `Environmental Variables`.
    
    Under `System Variables` select `Path`, then click `Edit`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

         * actually uses.
         *
         * Apart from the obvious classes that are directly used by the other set, we also need to keep any classes that might affect any number
         * of classes, like package-info, module-info and inlineable constants.
         */
        public ClassSetAnalysisData reduceToTypesAffecting(ClassSetAnalysisData other, CompilerApiData compilerApiData) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                return DynamicInvokeResult.notFound();
            }
    
            @SuppressWarnings("MixedMutabilityReturnType")
            // This might be too invasive to fix properly because it is in the dynamic code.
            public Map<String, ?> getProperties() {
                if (!includeProperties) {
                    return Collections.emptyMap();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
Back to top