Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 707 for Sall (0.03 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. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributes.java

        }
    
        @Override
        public Object get() {
            return value.isolate();
        }
    
        @Nullable
        private String desugar() {
            // We support desugaring for all non-primitive types supported in GradleModuleMetadataWriter.writeAttributes(), which are:
            // - Named
            // - Enum
            if (Named.class.isAssignableFrom(attribute.getType())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            given:
            sample targetPlatforms
    
            and:
            targetPlatforms.dir.file("build.gradle") << """
    model {
        toolChains {
            all{
                target("arm"){
                    cppCompiler.withArguments { args ->
                        args << "-m32"
                    }
                    linker.withArguments { args ->
                        args << "-m32"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Dimensions.java

            runtimeAttributes.attribute(OPERATING_SYSTEM_ATTRIBUTE, targetMachine.getOperatingSystemFamily());
        }
    
        /**
         * Used by all native plugins to work around the missing default feature on Property
         *
         * See https://github.com/gradle/gradle-native/issues/918
         *
         * @since 5.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top