Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 216 for Here (0.29 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

                else -> null
            }
        }
    
        private
        fun WriteContext.writeReference(value: Any?) {
            // Cannot warn about a script reference here, because we don't know whether the closure will attempt to use the script object when it executes,
            // and since almost every closure in a Groovy build script legitimately has the script as an owner, this will generate false problems.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GFileUtilsTest.groovy

            exception.message.startsWith("Could not update timestamp")
            file.file
            file.lastModified() == original
            // Changes in implementation of commons-io require us to not have a stubbed Path here
            new File(file.absolutePath).text == "data"
        }
    
        private static class PathOverridingFile extends TestFile {
            private final java.nio.file.Path path
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpsIntegrationTest.groovy

        TestResources resources = new TestResources(temporaryFolder)
        TestKeyStore keyStore
    
        def setup() {
            keyStore = TestKeyStore.init(resources.dir)
            // We need to set the SSL properties as arguments here even for non-embedded test mode
            // because we want them to be set on the wrapper client JVM, not the daemon one
            wrapperExecuter.withArguments(keyStore.getTrustStoreArguments())
            server.configure(keyStore)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

            def md5After = compiledClassFile.md5Hash
    
            then:
            result.task(":tracker:compileDebugJavaWithJavac").outcome == SUCCESS
            // TODO - this is here because AGP >=7.4 and <8.1.0 reads build/generated/source/kapt/debug at configuration time
            if (agpVersion.startsWith('7.3') || VersionNumber.parse(agpVersion) >= VersionNumber.parse('8.1.0')) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                // Setting the length improves upload performance
                contentStream.setLength(contentLength);
    
                // TODO - set ACL here if necessary
                String bucket = destination.getHost();
                String path = cleanResourcePath(destination);
                StorageObject objectMetadata = new StorageObject().setName(path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

                        }
                    }
                    dependencies {
                        implementation("org.junit.platform:junit-platform-launcher")
                        // Version must be empty here to test for emitted deprecation
                        implementation("org.jetbrains.kotlin:kotlin-test-junit5")
                    }
                }
            """
    
            ["test", "integTest"].each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

             * even though the VFS should be updated.
             *
             * On Linux, when you move the parent directory of a watched directory, then there isn't a notification.
             *
             * Our best bet here is to cull any moved watched directories from the VFS at the start of every build.
             */
            Collection<File> stopWatchingMovedDirectories(SnapshotHierarchy vfsRoot);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

            succeeds "help"
        }
    
        @Issue("http://discuss.gradle.org/t/concurrentmodification-exception-on-java-8-for-plugins-withid-with-gradle-2-4/8928")
        def "can nest detection"() {
            // Actual plugins in use here are insignificant
            when:
            file("buildSrc/src/main/groovy/PluginA.groovy") << """
                class PluginA implements $Plugin.name {
                    void apply(project) {}
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

            artifactsCache.assertIsFile()
        }
    
        // We once ran into a cache problem under windows, which was not reproducible with small build scripts. Therefore we
        // create a larger one here.
    
        def createLargeBuildScript() {
            File buildFile = projectDir.file('build.gradle')
            String content = """
    repositories {
        maven{
            url "${repo.uri}"
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            when:
            dir.deleteDir() // directory does not exist
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored() // TODO - it would be good to reuse a previous entry here
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output1)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top