Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 396 for Sall (0.04 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                    List<Object> outputFiles
    
                    @TaskAction
                    void doAction() {
                        outputFiles.each { output ->
                             def outputFile = output.call()
                             if (outputFile != null) {
                                outputFile.text = "task executed"
                             }
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def parent2Edge = edge(root, false)
            def parent1 = parent1Edge.targetComponent.nodes[0]
            def parent2 = parent2Edge.targetComponent.nodes[0]
            collectOwnStrictVersions(root, ['a']) //root, on all paths
            collectOwnStrictVersions(parent1, ['b', 'c'])
            collectOwnStrictVersions(parent2, ['b', 'd'])
    
            def child = nextNode()
            def edge1 = edge(parent1, false, null, child)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

                displayName = "Aggregating test results of an application/distribution (Incubating)"
                description = "Report all test results using the application/distribution of a multi-module project."
                category = "Java"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            public PriorityOption() {
                super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create("priority", "Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'"));
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            when:
            fails(buildA, ":assemble")
    
            then:
            failure.assertHasDescription("Could not determine the dependencies of task ':${buildName}:compileJava'.")
            failure.assertHasCause("Could not resolve all dependencies for configuration ':${buildName}:compileClasspath'.")
            failure.assertHasCause("""Cannot resolve external dependency test:test:1.2 because no repositories are defined.
    Required by:
        project :${buildName}""")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                return waitingForChangesEndIndex
            }
            endOfLineIndex = endOfLineIndex + newLine.length()
            // if no new build was started, assume that this was the last build and include all output in it
            int nextBuildStart = out.indexOf(CHANGE_DETECTED_OUTPUT, endOfLineIndex)
            if (nextBuildStart == -1) {
                return out.length()
            } else {
                return endOfLineIndex
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 1. NOT DEPENDS ON ANY 3RD-PARTY LIBRARIES except JDK 11.
     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

                @Override
                public void execute(PluginWithId pluginWithId) {
                    action.execute(pluginWithId.asAppliedPlugin());
                }
            };
            pluginsForId(id).all(wrappedAction);
        }
    
        private class AddPluginBuildOperation implements RunnableBuildOperation {
    
            private final Runnable adder;
            private final PluginImplementation<?> plugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

     *
     * https://developer.android.com/studio/releases/build-tools.html
     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
     * To run your tests against all AGP versions from agp-versions.properties, use higher version of java by setting -PtestJavaVersion=<version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationModulepath.isEmpty()
    
            0 * classDetectorFactory._
        }
    
        def "loads all framework dependencies from distribution even if some are already available with matching jar names"() {
            when:
            def cpFiles = cp.collect { new File("$it-1.0.jar") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top