Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for light (0.38 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            private final ExpressionValue left;
            private final ExpressionValue right;
    
            public ChainedPropertyExpression(ExpressionValue left, ExpressionValue right) {
                this.left = left;
                this.right = right;
            }
    
            @Override
            public String with(Syntax syntax) {
                return left.with(syntax) + "." + right.with(syntax);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    The set of type-safe model accessors available is calculated right before evaluating the script body, immediately after the `plugins {}` block.
    Any model elements contributed after that point do not work with type-safe model accessors.
    For example, this includes any configurations you might define in your own build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

            private String defaultConf; // used only as defaultconf, not used for
    
            // guessing right side part of a mapping
            private String defaultConfMapping; // same as default conf but is used
    
            // for guessing right side part of a mapping
            private DefaultDependencyDescriptor defaultConfMappingDescriptor;
    
            private final ExternalResource res;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private TaskFinishEvent taskFinishedEvent(InternalOperationFinishedProgressEvent event) {
            // do not remove task descriptors because they might be needed to describe subsequent tasks' dependencies
            TaskOperationDescriptor descriptor = assertDescriptorType(TaskOperationDescriptor.class, getParentDescriptor(event.getDescriptor().getId()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Once you declare a task’s formal inputs and outputs, Gradle can then infer things about those properties. For example, if an input of one task is set to the output of another, that means the first task depends on the second, right? Gradle knows this and can act upon it.
    
    We’ll look at this feature next and also some other features that come from Gradle knowing things about inputs and outputs.
    
    
    [[sec:inferred_task_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    If you are using Eclipse: By default, Eclipse also runs unit tests as modules using module patching (see <<#sec:java_testing_modular_patching,below>>).
    In an imported Gradle project, unit testing a module with the Eclipse test runner might fail.
    You then need to manually adjust the classpath/module path in the test run configuration or delegate test execution to Gradle.
    
    This only concerns the test execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            given:
            property.insertAll(Providers.of(["k1": "1", "k2": "2"]))
            property.put("k3", notDefined())
    
            expect:
            !property.present
            property.getOrNull() == null
        }
    
        def "putting an undefined map provider after inserting is not right-side undefined-safe"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

       // select test framework before configuring options
       useJUnitPlatform()
       options {
       }
    }
    ```
    
    Additionally, setting the test framework multiple times to the _same_ framework now accumulates any options that might be set on the framework.
    Previously, each time the framework was set, it would cause the framework options to be overwritten.
    
    The following code now results in both the "foo" and "bar" tags to be included for the `test` task:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The type of the argument passed to `Provider.filter` is changed from `Predicate` to `Spec` for a more consistent API.
    This change should not affect anyone using `Provider.filter` with a lambda expression.
    However, this might affect plugin authors if they don't use SAM conversions to create a lambda.
    
    === Deprecations
    
    [[org_gradle_util_reports_deprecations_8]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        @Nullable
        String getDescription();
    
        /**
         * Sets a description for this project.
         *
         * @param description The description of the project. Might be null.
         */
        void setDescription(@Nullable String description);
    
        /**
         * <p>Returns the group of this project. Gradle always uses the {@code toString()} value of the group. The group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top