Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for allocAll (0.11 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                }
                'org:b:1.0' {
                    allowAll()
                }
                'org:a:1.0' {
                    allowAll()
                }
                'align:first:2.0' {
                    allowAll()
                }
                'align:second:1.0' {
                    allowAll()
                }
                'align:second:2.0' {
                    allowAll()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            withColorVariants(mavenHttpRepo.module("org.slf4j", "slf4j-api", "1.7.25")).publish().allowAll()
            withColorVariants(mavenHttpRepo.module("junit", "junit", "4.11"))
                .dependsOn("hamcrest", "hamcrest-core", "1.3")
                .publish()
                .allowAll()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/model.go

    	// Credentials stores all credentials in the cluster
    	Credentials credentials.Controller
    
    	// Domain for the cluster. Typically, cluster.local
    	Domain  string
    	Context GatewayContext
    }
    
    type Grants struct {
    	AllowAll     bool
    	AllowedNames sets.String
    }
    
    type AllowedReferences map[Reference]map[Reference]*Grants
    
    func (refs AllowedReferences) SecretAllowed(resourceName string, namespace string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ParentPomsReadOnlyCacheDependencyResolutionTest.groovy

            fileInReadReadOnlyCache("modules-${CacheLayout.MODULES.version}/files-${CacheLayout.FILE_STORE.version}/org.readonly/parent/1.0").eachFileRecurse { it.delete() }
            withReadOnlyCache()
            other.allowAll()
            parent.allowAll()
            succeeds ':checkDeps'
    
            then:
            noExceptionThrown()
        }
    
    
        @Override
        List<MavenHttpModule> getModulesInReadOnlyCache(MavenHttpRepository repo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AbstractPluginSpec.groovy

        ) {
            pluginBuilder.with {
                addPlugin(impl, PLUGIN_ID)
                publishAs(GROUP, ARTIFACT, VERSION, pluginRepo, executer).allowAll().pluginModule as MavenHttpModule
            }
        }
    
        MavenHttpModule publishSettingPlugin(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            def invalidLocation = executer.gradleUserHomeDir.file(cachePath + invalidPath).canonicalFile
    
            testDep.allowAll()
            abusedCoordinates.allowAll()
            server.allowGetOrHead('/repo/org/.ssh/pwned.txt', fakeDep)
    
            and:
            withValidJavaSource()
            buildWithJavaLibraryAndMavenRepo()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleSpec.groovy

                            module.rootMetaData.expectHead()
                            break
                        case InteractionExpectation.MAYBE:
                            module.rootMetaData.allowAll()
                            break
                    }
    
                } else if (module instanceof IvyModule) {
                    def directoryList = repository.directoryList(module.organisation, module.module)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/DeprecatedTLSVersionDependencyResolutionIntegrationTest.groovy

            def module = mavenHttpRepo.module('group', 'projectA', '1.2').publish()
    
            and:
            writeBuildFile()
            failedResolve.prepare()
    
            when:
            module.allowAll()
    
            then:
            executer.withStackTraceChecksDisabled()
            fails('checkDeps')
    
            and:
            failedResolve.assertFailurePresent(failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top