Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 275 for Devices (0.14 sec)

  1. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":persistent-cache"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. subprojects/core-api/build.gradle.kts

            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        compileOnly(libs.jetbrainsAnnotations)
    
        api(project(":process-services"))
        api(projects.stdlibJavaExtensions)
        api(project(":build-cache-spi"))
        api(project(":logging-api"))
        api(project(":base-services"))
        api(project(":files"))
        api(project(":resources"))
        api(project(":persistent-cache"))
        api(project(":declarative-dsl-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"kotlin-dsl-integ-tests",
    					"snapshots",
    					"platform-jvm",
    					"build-cache-spi",
    					"internal-integ-testing",
    					"jvm-services",
    					"publish",
    					"problems-api",
    					"process-services",
    					"build-configuration",
    					"base-services"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"scala",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/build.gradle.kts

        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
        api(project(":snapshots"))
        api(project(":worker-main"))
        api(project(":build-process-services"))
    
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(project(":file-collections"))
        implementation(project(":time"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/build.gradle.kts

    }
    
    description = "Services and utilities needed by Develocity plugin"
    
    errorprone {
        disabledChecks.addAll(
            "SameNameButDifferent", // 4 occurrences
        )
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":build-operations"))
        api(project(":base-services"))
        api(project(":configuration-cache"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/build.gradle.kts

        testImplementation(project(":logging"))
        testImplementation(project(":process-services"))
        testImplementation(project(":base-services-groovy"))
        testImplementation(project(":resources"))
        testImplementation(libs.commonsIo)
        testImplementation(testFixtures(projects.serialization))
        testImplementation(testFixtures(project(":base-services")))
        testImplementation(testFixtures(project(":build-operations")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/extensibility/unit-test-fixtures/build.gradle.kts

        implementation(project(":daemon-services"))
        implementation(project(":native"))
    
        testImplementation(project(":testing-base"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
        integTestRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder loads services from a Gradle distribution.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a service interface to indicate in which scopes it is defined in.
     * Services are lifecycled with their scope, and stopped/closed when the scope is closed.
     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/build.gradle.kts

        api(projects.stdlibJavaExtensions)
        api(project(":base-services"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":model-core"))
        api(project(":logging"))
        api(project(":native"))
    
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.io)
        implementation(project(":base-services-groovy"))
    
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/build.gradle.kts

        testImplementation(project(":base-services-groovy"))
        testImplementation(project(":native"))
        testImplementation(project(":snapshots"))
        testImplementation(project(":process-services"))
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":platform-native")))
    
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":platform-base"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top