Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for allocAll (0.9 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesCachingIntegrationTest.groovy

    dependencies {
        components {
            all(CachedRule)
        }
    }
    """
    
            when:
            repositoryInteractions {
                'org.test:projectA:1.0' {
                    allowAll()
                }
                'org.test:projectB:1.0' {
                    allowAll()
                }
            }
    
            then:
            succeeds 'resolve'
            outputContains('Rule executed')
            outputContains('See dependency')
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

                            }
                        }
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org.utils:api:1.2' {
                    allowAll()
                }
            }
    
            then:
            fails ':checkDeps'
            GradleContextualExecuter.configCache || failure.assertHasDescription("Execution failed for task ':checkDeps'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.artifact(classifier: "api")
            module.artifact(classifier: "sources")
            module.artifact(classifier: "javadoc")
            module.publish()
            module.allowAll()
    
            buildFile << """
    dependencies {
        implementation 'some:module:1.0:api'
    }
    """
    
            when:
            useMavenRepo(repo)
            succeeds ideTask
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyDownloadBuildOperationsIntegrationTest.groovy

            def missing = emptyRepo.module("org.utils", "impl", "1.3").allowAll()
            missing.rootMetaData.allowGetOrHead()
            def missingDir = emptyRepo.directory("org.utils", "impl")
            missingDir.allowGet()
    
            def m = mavenHttpRepo.module("org.utils", "impl", '1.3')
                .allowAll()
                .publish()
            m.rootMetaData.file.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ResolveArtifactsProgressCrossVersionSpec.groovy

            mavenHttpRepo.module("test", "provider", "1.0").publish().allowAll()
        }
    
        def expectDownloadNoArtifacts() {
            mavenHttpRepo.module("test", "provider", "1.0")
                .hasPackaging("pom")
                .hasType("pom")
                .dependsOn("test", "other", "1.0")
                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "other", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

            def projectD = ivyHttpRepo.module('ivy.configuration', 'projectD', '1.7').publish()
    
            projectA.allowAll()
            projectB.allowAll()
            projectC.allowAll()
            projectD.allowAll()
    
            when:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants(['projectA-1.2.jar'] + jars)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

                    expectVersionListing()
                    '1.2' {
                        expectGetMetadata()
                    }
                    '1.0' {
                        allowAll()
                    }
                    '1.1' {
                        allowAll()
                    }
                }
                'org:testB:1.0' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                            expectVersionListing()
                        }
                        '1.2' {
                            allowAll()
                        }
                        '1.1' {
                            allowAll()
                        }
                        '1.0' {
                            allowAll()
                        }
                    }
                }
                succeeds "retrieve"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                                version(v) {
                                    allowAll()
                                }
                            }
                        }
                    }
                }
                'bom:bom:1.0' {
                    allowAll()
                }
                'root:root:1.0' {
                    allowAll()
                }
            }
    
            succeeds ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            mavenHttpRepo.module("org.external", "external-lib")
                .dependsOn(util)
                .publish()
                .allowAll()
            mavenHttpRepo.module("org.external", "external-lib2")
                .dependsOn(util)
                .withModuleMetadata()
                .publish()
                .allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top