Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 299 for sublist (0.2 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

    /**
     * [KotlinGlobalModificationService] is a central service for the invalidation of caches during/between tests.
     *
     * All `publish` functions must be called in a write action because the events in [KotlinModificationTopics] guarantee that the listener is called in a
     * write action.
     *
     * Implementations of this service should publish global modification events to at least the following components:
     * - [KotlinModificationTrackerFactory]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                }
                configurations {
                    conf
                }
            """
            def foo11 = mavenRepo.module("org", "foo", '1.0').publish()
            mavenRepo.module("org", "foo", '1.1').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(foo11).publish()
        }
    
        void "force resolution strategy is applied to dependency constraints"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r65/ToolingApiEclipseModelLifeCycleCrossVersionSpec.groovy

            setup:
            MavenFileRepository mavenRepo = new MavenFileRepository(file('maven-repo'))
            MavenFileModule libApi = mavenRepo.module('org.example', 'lib-api', '1.0').publish()
            mavenRepo.module('org.example', 'lib-impl', '1.0').dependsOn(libApi).publish()
            String localMaven = "maven { url '${mavenRepo.uri}' }"
    
            settingsFile << 'rootProject.name = "root"'
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
     * #### Timing Guarantees
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

        def 'can use artifact resolution queries in parallel to file resolution'() {
            given:
            def module = mavenHttpRepo.module('group', "artifact", '1.0').publish()
            def handler = blockingServer.expectConcurrentAndBlock(blockingServer.get(module.pom.path).sendFile(module.pom.file), blockingServer.get('/sync'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.api.publish.ivy.internal.IvyServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 48 bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.api.publish.maven.internal.MavenPublishServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 59 bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/resources/META-INF/services/org.gradle.internal.service.scopes.GradleModuleServices

    org.gradle.api.publish.internal.service.PublishServices...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 56 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            }
        }
    
        def "publishing.publications based publication"() {
            settingsFile << "rootProject.name = 'test.project'"
            buildFile <<
                    """
    apply plugin: "ivy-publish"
    apply plugin: "maven-publish"
    apply plugin: "java"
    
    version = 1.0
    group = "test.group"
    
    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
            maven { url uri("maven-repo") }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                rootProject.name = 'plugin'
            """
            file('plugin/build.gradle') << """
                plugins {
                    id 'java-gradle-plugin'
                    id 'groovy'
                    id 'maven-publish'
                }
    
                group = "com.example"
                version = "0.1.1"
    
                repositories {
                    mavenCentral()
                }
    
                gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top