Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 208 for Here (0.06 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     *     returned value is used to check the configuration cache, the {@link #obtain()} method will
     *     be called during each build. Calling slow commands here will slow things down.</li>
     * </ul>
     *
     * <p>
     * A value source implementation will most likely take parameters. To do this create a
     * subtype of {@link ValueSourceParameters} and declare this type as the type parameter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

            else -> taggedEncodingFor(value.javaClass).run {
                writeSmallInt(tag)
                withDebugFrame({
                    // TODO:configuration-cache evaluate whether we need to unpack the type here
                    // GeneratedSubclasses.unpackType(value).typeName
                    value.javaClass.typeName
                }) {
                    encoding.run { encode(value) }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top