Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 205 for light (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            container.index.pendingAsMap.size() == 2
    
            filtered.index.asMap().size() == 1
            filtered.index.pendingAsMap.size() == 1
    
            expect: "list contains the right elements when iterated"
            filtered.asList()*.name == ["realized2", "unrealized2"]
    
            and: "unrealized element get realized"
            container.index.asMap().size() == 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Instead of returning a task instance, the `register(...)` method returns a link:{javadocPath}/org/gradle/api/tasks/TaskProvider.html[TaskProvider], which is a reference to the task that can be used in many places where a normal task object might be used (i.e., when creating task dependencies).
    
    [[sec:task_configuration_avoidance_guidelines]]
    == Guidelines
    
    [[sec:how_do_i_defer_creation]]
    === Defer task creation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

            // We free the worker lease but keep shared resource leases. We don't want to free shared resources until a task completes,
            // regardless of whether it is actually doing work just to make behavior more predictable. This might change in the future.
            coordinationService.withStateLock(unlock(workerLeases));
            acquireLocks(allLocks);
        }
    
        private boolean allLockedByCurrentThread(final Iterable<? extends ResourceLock> locks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

         * Implemented here instead as a default method of DependencyHandler like most of other methods with `Provider<MinimalExternalModuleDependency>` argument
         * since we don't want to expose enforcedPlatform on many places since we might deprecate enforcedPlatform in the future
         *
         * @param dependencyProvider the dependency provider
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    [[sec:lifecycle_tasks]]
    == Lifecycle tasks
    
    Lifecycle tasks can be particularly beneficial for separating work between users or machines (CI vs local).
    For example, a developer on a local machine might not want to run an entire build on every single change.
    
    Let's take a standard `app` as an example which applies the `base` plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * </p>
         *
         * <p>
         * If the supplied providers represents a task or the output of a task, the resulting provider
         * will carry the dependency information.
         * </p>
         *
         * @param right the second provider to combine with
         * @param combiner the combiner of values. May return {@code null}, in which case the provider
         * will have no value.
         * @param <U> the type of the second provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

            Expression left = expression.getArguments().get(0);
            Expression right = expression.getArguments().get(1);
    
            Collection<Expression> leftValues = resolveExpressionToTokens(visibleMacros, left, visitor, tokenLookup);
            Collection<Expression> rightValues = resolveExpressionToTokens(visibleMacros, right, visitor, tokenLookup);
            if (leftValues.isEmpty() || rightValues.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * @param description The description of the task. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
         * Returns the task group which this task belongs to. The task group is used in reports and user interfaces to
         * group related tasks together when presenting a list of tasks to the user.
         *
         * @return The task group for this task. Might be null.
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ** a wide variety of <<#sec:supported_transport_protocols,remote protocols>> such as HTTPS, SFTP, AWS S3 and Google Cloud Storage
    
    [[sub:flat_dir_resolver]]
    === Flat directory repository
    
    Some projects might prefer to store dependencies on a shared drive or as part of the project source code instead of a binary repository product. If you want to use a (flat) filesystem directory as a repository, simply type:
    
    .Flat repository resolver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top