Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for allocAll (0.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpPluginRepository.groovy

                pom.expectGet()
                artifact.expectGet()
                allowAll()
            }
            module(group, artifactId, version).with {
                pom.expectGet()
                artifact.expectGet()
                allowAll()
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/StaticVersionsReadOnlyCacheDependencyResolutionTest.groovy

            fileInReadReadOnlyCache("modules-${CacheLayout.MODULES.version}/metadata-${CacheLayout.META_DATA.version}/${file}.bin").bytes = [0, 0, 0]
            withReadOnlyCache()
    
            core.allowAll()
            core.rootMetaData.allowGetOrHead()
            util.allowAll()
    
            if (resolveDynamic) {
                mavenHttpRepo.module('org.readonly', 'core', '0.9').publish()
                executer.withArgument("--refresh-dependencies")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/HttpModule.groovy

     * limitations under the License.
     */
    package org.gradle.test.fixtures
    
    import org.gradle.test.fixtures.server.http.HttpArtifact
    
    interface HttpModule extends Module {
        HttpModule allowAll()
        HttpArtifact getArtifact(Map<String, ?> notation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 828 bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

            repo = new MavenHttpRepository(server, mavenRepo)
    
            repo.module("commons-io", "commons-io", "1.4").publish().allowAll()
            repo.module("commons-lang", "commons-lang", "2.6").publish().allowAll()
    
            server.start()
        }
    
        private void updateCaches() {
            String version = GradleVersion.current().version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

                this.pluginModule = results.pluginModule as HttpModule
                this.markerModules = results.markerModules as List<HttpModule>
            }
    
            PluginHttpPublicationResults allowAll() {
                ([pluginModule] + markerModules)*.allowAll()
                return this
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderIntegrationTest.groovy

            }
        }
    
        def "can resolve remote dependencies"() {
            def repo = new MavenHttpRepository(server, mavenRepo)
            repo.module("org.gradle", "a", "1.0").publish().allowAll()
            server.start()
    
            when:
            project = ProjectBuilder.builder().build()
            project.with {
                repositories {
                    maven { url repo.uri }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpModule.groovy

            return getArtifact(type: 'module')
        }
    
        MetaDataArtifact getRootMetaData() {
            return new MetaDataArtifact(server, moduleRootUriPath, backingModule)
        }
    
        MavenHttpModule allowAll() {
            server.allowGetOrHead(uriPath, backingModule.moduleDir)
            return this
        }
    
        void missing() {
            server.allowGetOrHeadMissing(pomPath)
            server.allowGetOrHeadMissing(metaDataPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top