Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Dive (9.13 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeSpec.groovy

    import org.gradle.api.tasks.util.PatternFilterable
    import spock.lang.Specification
    
    import java.util.function.Consumer
    
    class CompositeFileTreeSpec extends Specification {
        def "tree filtered by spec has same live dependencies as tree"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def dependencySource = Mock(TaskDependencyContainer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskCollectionExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.Task
    import org.gradle.api.tasks.TaskCollection
    
    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

                // Not supported on Java 6
            }
        }
    
        private final Map<Object, Object> userData = new HashMap<Object, Object>();
    
        /**
         * This method can be used to store user data that should live among with this classloader
         *
         * @param consumerId the consumer
         * @param onMiss called to create the initial data, when not found
         * @param <T> the type of data
         * @return user data
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import java.io.RandomAccessFile
    import java.net.ServerSocket
    import java.net.Socket
    import java.util.concurrent.Executor
    import java.util.concurrent.ThreadFactory
    
    
    fun BindingsBuilder.unsupportedTypes() {
    
        // Live JVM state
        bind(unsupported<ClassLoader>())
        bind(unsupported<Thread>())
        bind(unsupported<ThreadFactory>())
        bind(unsupported<Executor>())
        bind(unsupported<FileDescriptor>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockContentionHandler.java

    public interface FileLockContentionHandler {
        void start(long lockId, Consumer<FileLockReleasedSignal> whenContended);
    
        void stop(long lockId);
    
        int reservePort();
    
        /**
         * Pings the lock owner with the give port to start the lock releasing
         * process in the owner. May not ping the owner if:
         * - The owner was already pinged about the given lock before and the lock release is in progress
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 01:28:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

        withType(S::class.java, configuration)
    
    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MergeProviderTest.groovy

            then: // ensure ordering
            1 * rightSideEffect.execute("right")
    
            then: // ensure ordering
            1 * mergedSideEffect.execute(["left", "right"])
        }
    
        def "provider is live"() {
            given:
            def first = objects.property(String)
            def second = objects.property(String)
    
            def provider = new MergeProvider([first, second])
    
            when:
            first.set("1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(project(":resources-http"))
        // TODO - move the isolatable serializer to model-core to live with the isolatable infrastructure
        runtimeOnly(project(":workers"))
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(projects.io)
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. .teamcity/README.md

    - Click `Create subproject` button at the bottom of the "Subprojects" region of [this page](https://builds.gradle.org/admin/editProject.html?projectId=Gradle&tab=projectGeneralTab)
      - Select `Manually`.
      - Give it a name. The name will be displayed on TeamCity web UI. We highly recommend it be capitalized from the branch name, i.e. `MyTestBranch`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FingerprintingStrategy.java

     */
    public interface FingerprintingStrategy {
    
        // TODO wolfs: Move these identifiers to the actual strategy classes when they live in :snapshots
        String CLASSPATH_IDENTIFIER = "CLASSPATH";
        String COMPILE_CLASSPATH_IDENTIFIER = "COMPILE_CLASSPATH";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top