Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 216 for Here (0.04 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

            TestProjects.validateTestProject(testProject)
    
            def results = newResult()
    
            try {
                runAllSpecifications(results)
            } catch (Exception e) {
                // Print the exception here, so it is reported even when the reporting fails
                e.printStackTrace()
                throw e
            } finally {
                results.endTime = clock.getCurrentTime()
                reporter.report(results)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

            }
            return value != null;
        }
    
        private static boolean hasConfigurableValue(@Nullable Object value) {
            // TODO We should check the type of the property here, not its value
            //   With the current code we'd assume a `Provider<String>` to be configurable when
            //   the getter returns `null`. The property type is not currently available in this
            //   context, though.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *
     *     <dt>probed hierarchies</dt>
     *     <dd>The list of file system hierarchies that we've activated a file system probe for.
     *     We list every hierarchy here, even if there are ones nested inside others.
     *     See {@link FileWatcherProbeRegistry}.</dd>
     * </dl>
     */
    public interface FileWatcherUpdater {
        /**
         * Registers a watchable hierarchy.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

                    );
    
                    ModelNode modelNode = modelRegistry.atStateOrLater(TaskContainerInternal.MODEL_PATH, ModelNode.State.Created);
    
                    // TODO LD use something more stable than a cast here
                    MutableModelNode mutableModelNode = (MutableModelNode) modelNode;
    
                    // Add tasks created through rules to the actual task container
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    - In the Groovy DSL, the `Settings` object documentation is found link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[here].
    - In the Kotlin DSL, the `Settings` object documentation is found link:{kotlinDslPath}/gradle/org.gradle.api.initialization/-settings/index.html[here].
    
    Many top-level properties and blocks in a settings script are part of the Settings API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

                        .orElse(EXECUTED_NON_INCREMENTALLY);
                default:
                    throw new AssertionError();
            }
        }
    
        /*
         * This operation is only used here temporarily. Should be replaced with a more stable operation in the long term.
         */
        public interface Operation extends BuildOperationType<Operation.Details, Operation.Result> {
            interface Details {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    They are suitable for complex build logic that needs to be shared across projects, builds, and teams.
    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    [cols="~,~,~,~,~"]
    |===
    |*#* |*Using:* |*Type:* |*The Plugin is:* |*Recommended?*
    
    |1
    |Kotlin DSL
    |Script plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

     * eventually be moved into its own file so that we don't need to instantiate it indirectly through a
     * {@link DefaultAttributesSchema} instance. Most tests in {@link DefaultAttributesSchemaTest} probably
     * belong here instead.
     */
    class DefaultAttributeSelectionSchemaTest extends Specification {
        private static final ImmutableAttributesFactory ATTRIBUTES_FACTORY = AttributeTestUtil.attributesFactory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencySuccessorsOnlyNodeSet.java

            // However, it is not always known whether a dependency will be scheduled or not when it is added here.
            // For example, the dependency may later be filtered from the graph and this set is never notified that it is complete
            // This lifecycle could be simplified and allow the dependencies to be discarded at this point
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringLocalBuildCacheServiceHandle.java

            private final long archiveSize;
    
            public LocalStoreDetails(BuildCacheKey key, File file) {
                this.key = key;
                // We need to calculate the size eagerly here, since the file will already be gone
                // (aka in the local cache), when the DV plugin queries the value.
                this.archiveSize = file.length();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:21:33 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top