Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 186 for Sall (0.35 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                            queue.removeFirst();
                            continue;
                        }
                    }
                    if (goal.state == ModelGoal.State.VisitingDependencies) {
                        // All dependencies visited
                        goal.apply();
                        goal.state = ModelGoal.State.Achieved;
                        queue.removeFirst();
                        continue;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
        public static List<String> toStringList(Iterable<?> iterable) {
            return collect(iterable, new LinkedList<String>(), InternalTransformers.asString());
        }
    
        /**
         * Recursively unpacks all the given things into a flat list.
         *
         * Nulls are not removed, they are left intact.
         *
         * @param things The things to flatten
         * @return A flattened list of the given things
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

                    if (visitAll(sourceTree)) {
                        fileTrees.add(sourceTree.getMirror());
                    }
                }
            });
            return fileTrees;
        }
    
        /**
         * Visits all the files of the given tree.
         */
        protected static boolean visitAll(FileSystemMirroringFileTree tree) {
            final MutableBoolean hasContent = new MutableBoolean();
            tree.visit(new FileVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            init.useDefaults.convention(false)
            init.comments.convention(true)
            init.allowFileOverwrite.convention(false)
        }
    
        def "creates project with all defaults"() {
            given:
            projectLayoutRegistry.buildConverter >> buildConverter
            buildConverter.canApplyToCurrentDirectory() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Provides a central location for handling failures encountered during
     * each stage of the variant selection process during dependency resolution.
     *
     * All variant selection failures encountered during selection by the {@link GraphVariantSelector} or
     * {@link AttributeMatchingArtifactVariantSelector}
     * should be routed through this class.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

        }
    
        // withType when used with a class that is not a super-class of the container does not work with registered elements
        @NotYetImplemented
        def "can find all configurations even when they're registered"() {
            when:
            configurationContainer.register("foo")
            configurationContainer.create("bar")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            def action = Mock(Action)
            def task = task("task")
    
            taskFactory.create(_ as TaskIdentity) >> task
            action.execute(task) >> { throw failure }
    
            when:
            container.all(action)
            container.create("task", action)
    
            then:
            def e = thrown(GradleException)
            e.message == "Could not create task ':project:task'."
            e.cause == failure
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            storeOps.size() == 1
            storeOps.first().failure.contains("response status 401: Unauthorized")
        }
    
        private List<BuildOperationRecord> compileJavaStoreOperations() {
            buildOperations.all(BuildCacheRemoteStoreBuildOperationType) {
                buildOperations.parentsOf(it).any {
                    it.hasDetailsOfType(ExecuteTaskBuildOperationType.Details) && it.details.taskPath == ":compileJava"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

        }
    
        def 'catastrophic failure of every test task prevents creation of aggregated report'() {
            given:
            // prevent all test VMs from starting
            buildFile << '''
                    subprojects {
                        plugins.withId('java') {
                            testing {
                                suites {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            blockingServer.expectConcurrent(":b:aPing", ":b:bPing")
            run ":a:aSerialPing", ":b:aPing", ":b:bPing"
    
            // when configuration is loaded from configuration cache, all tasks are executed in parallel
            if (GradleContextualExecuter.configCache) {
                blockingServer.expectConcurrent(":a:aSerialPing", ":b:aPing", ":b:bPing")
                run ":a:aSerialPing", ":b:aPing", ":b:bPing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top