Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 215 for Sall (0.03 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

    class JavaCompileProblemsIntegrationTest extends AbstractIntegrationSpec implements JavaToolchainFixture {
    
        /**
         * A map of all possible file locations, and the number of occurrences we expect to find in the problems.
         */
        private final Map<String, Integer> possibleFileLocations = [:]
    
        /**
         * A map of all visited file locations, and the number of occurrences we have found in the problems.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    │   └── 4.9
    ├── init.d // <5>
    │   └── my-setup.gradle
    ├── jdks // <6>
    │   ├── ⋮
    │   └── jdk-14.0.2+12
    ├── wrapper
    │   └── dists // <7>
    │       ├── ⋮
    │       ├── gradle-4.8-bin
    │       ├── gradle-4.9-all
    │       └── gradle-4.9-bin
    └── gradle.properties // <8>
    ----
    <1> Global cache directory (for everything that is not project-specific).
    <2> Version-specific caches (e.g., to support incremental builds).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    We expect that developers will not be allowed to populate the remote build cache, and all continuous integration builds populate the build cache after running the `clean` task.
    
    For your build to play well with task output caching it must work well with the <<incremental_build#incremental_build,incremental build>> feature.
    For example, when running your build twice in a row all tasks with outputs should be `UP-TO-DATE`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        protected TestFile getDefaultTmpDir() {
            // File.createTempFile sets the location of the temp directory to a static variable on the first call.  This prevents future
            // changes to java.io.tmpdir from having any effect in the same process.  We set this to use a common tmp directory for all
            // tests running in the same process so that we don't have a situation where one process initializes with a tmp directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

            override fun runCompileBuildOperation(scriptPath: String, stage: String, action: () -> String): String =
    
                buildOperationRunner.call(object : CallableBuildOperation<String> {
    
                    override fun call(context: BuildOperationContext): String =
                        action().also {
                            context.setResult(object : Result {})
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    public void execute() {}
                }
            """
    
            when:
            succeeds("doWork")
    
            then:
            nativeDir.exists() == initialized
    
            where:
            // Works for all cases except -D$NATIVE_SERVICES_OPTION=false
            description       | systemProperties                    | initialized
            "initialized"     | ["-D$NATIVE_SERVICES_OPTION=true"]  | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                contextualLabel == 'Problem: In version catalog testLibs, you can only call the \'from\' method a single time.'
                details == 'The method was called more than once'
                solutions == [ 'Remove further usages of the method call' ]
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20060")
        def "no name conflicting of accessors"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            def pluginDir = new File(testDirectory, "typed-attributes-plugin-$version")
            pluginDir.deleteDir()
            pluginDir.mkdirs()
            def builder = new FileTreeBuilder(pluginDir)
            builder.call {
                'settings.gradle'('rootProject.name="com.acme.typed-attributes.gradle.plugin"')
                'build.gradle'("""
                    apply plugin: 'groovy'
                    apply plugin: 'maven-publish'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                        file('file3.txt').text = 'original'
                    }
                }
            }
    
            and: "a settings script which edits the zip archive and then verifies that all files contain the same content"
            settingsFile << """
                ${server.callFromBuild('wait')}
    
                void update() {
                    FileTree tree = zipTree(new File(settings.rootDir, 'test.zip'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        public JvmOptions(FileCollectionFactory fileCollectionFactory) {
            this(fileCollectionFactory, new DefaultJavaDebugOptions());
        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top