Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 709 for Sall (0.03 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    The effect of this configuration would be that changes to `build-info.properties` would be ignored for both up-to-date checks and task output caching.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                lock.unlock();
            }
    
            // At this point:
            // If in daemon mode, the process has started successfully and all streams to the process have been closed
            // If in fork mode, the process has completed and all cleanup has been done
            // In both cases, all asynchronous work for the process has completed and we're done
    
            return result();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    .Setting Swift compiler options for all variants
    ====
    include::sample[dir="snippets/swift/basic/kotlin",files="build.gradle.kts[tags=swift-compiler-options-all-variants]"]
    include::sample[dir="snippets/swift/basic/groovy",files="build.gradle[tags=swift-compiler-options-all-variants]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

        a. If the attribute has a known precedence, Gradle will stop as soon as there is a single candidate remaining.
        b. After all extra attributes with precedence are considered, the remaining candidates can be chosen if they are compatible with all of the non-ordered disambiguation rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

            !file("build/generated/sources/annotationProcessor/java/main/AHelperResource.txt").exists()
    
            and:
            outputs.deletedFiles("AHelper")
        }
    
        def "all files are recompiled when processor changes"() {
            given:
            java "@Helper class A {}"
            outputs.snapshot { run "compileJava" }
    
            when:
            helperProcessor.suffix = "world"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

                        }
                    }
                    buildTypes {
                        debug
                        release
                    }
                    components {
                        all {
                            targetPlatform "win32"
                            targetPlatform "x64"
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

        /**
         * This method collects all source paths that will be passed to a compiler. While collecting paths it additionally also
         * collects all classes that are inside these sources, but were not detected as a dependency of changed classes.
         * This is important so all .class files that will be re-created are removed before compilation, otherwise
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            helloTest(CUnitTestSuiteSpec) {
                testing \$.components.hello
                binaries.all {
                    lib library: "cunit", linkage: "static"
                }
            }
        }
    }
    """
    
            when:
            run "check"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Such modules, that only have a name as module description, are called _automatic module_ that export **all** their packages and can read **all** modules on the module path.
    
    A third case are traditional libraries that provide no module information at all -- for example `commons-cli:commons-cli:1.4`.
    Gradle puts such libraries on the classpath instead of the module path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                testing {
                    suites {
                        test {
                            useTestNG('$version')
                            targets {
                                all {
                                    testTask.configure {
                                        reports.junitXml.outputPerTestCase = true
                                        onOutput { test, event -> print "\$test -> \$event.message" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top