Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for light (0.04 sec)

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

    [[tutorial_using_tasks]]
    = Using Tasks
    
    The work that Gradle can do on a project is defined by one or more _tasks_.
    
    image::author-gradle-5.png[]
    
    A task represents some independent unit of work that a build performs.
    This might be compiling some classes, creating a JAR, generating Javadoc, or publishing some archives to a repository.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    |Legacy, don't use|true|true
    |===
    
    For backwards compatibility, both flags have a default value of `true`, but as a plugin author, you should always determine the right values for those flags, or you might accidentally introduce resolution errors.
    
    [[sec:choosing-configuration]]
    == Choosing the right configuration for dependencies
    
    The choice of the configuration where you declare a dependency is important.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                .execute()
                .getOutputAs(GroovyScriptCompilationOutput.class)
                .get();
        }
    
        /**
         * We want to use build cache for script compilation, but build cache might not be available yet with early execution engine.
         * Thus settings and init scripts are not using build cache for now.<br/><br/>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    [[sub:declaring_dependency_with_dynamic_version]]
    == Declaring a dynamic version
    
    Projects might adopt a more aggressive approach for consuming dependencies to modules.
    For example you might want to always integrate the latest version of a dependency to consume cutting edge features at any given time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    The "architecture" dimension covers processor architectures like x86-64 and x86.
    
    A variant is a combination of values for these dimensions, consisting of exactly one value for each dimension.
    You might have a "debug x86-64" or a "release x86" variant.
    
    Gradle has built-in support for several dimensions and several values within each dimension.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    As a user of Gradle, attributes are often hidden as implementation details.
    But it might be useful to understand the _standard attributes_ defined by Gradle and its core plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Automated Testing :: Automated testing includes unit, integration, and functional testing.
    
    image::testing-pyramid.png[float=right]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            when (fileCollection) {
                is SubtractingFileCollection -> {
                    // TODO - when left and right are both static then we should serialize the current contents of the collection
                    elements.add(SubtractingFileCollectionSpec(fileCollection.left, fileCollection.right))
                    false
                }
    
                is FilteredFileCollection -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.Future;
    
    import static java.util.Optional.empty;
    import static org.gradle.internal.Either.left;
    import static org.gradle.internal.Either.right;
    import static org.gradle.internal.UncheckedException.unchecked;
    
    public class DefaultCachedClasspathTransformer implements CachedClasspathTransformer, Closeable {
    
        private final PersistentCache cache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top