Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for allocAll (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

                .allowAll()
            String secondPluginId = 'com.acme.greeter2'
            new PluginBuilder(file("greeter-second"))
                .addPluginWithPrintlnTask('greet2', 'Hello from second plugin!', secondPluginId, "SecondPlugin")
                .publishAs("some", "artifact2", pluginVersion, pluginPortal, executer)
                .allowAll()
    
            file("settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

            pluginBuilder2.with {
                addPlugin("project.task('plugin2Task')", "test-plugin-2", "TestPlugin2")
                publishAs(GROUP, ARTIFACT + "2", VERSION, pluginRepo, executer).allowAll()
            }
    
            publishPlugin """
                    // can load plugin dependent on
                    project.apply plugin: 'test-plugin-2'
    
                    // Can see dependency classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractProxyResolveIntegrationTest.groovy

            setupServer()
    
            and:
            buildFile << """
    repositories {
        maven { url "${repoServerUrl}" }
    }
    """
            when:
            proxyServer.configureProxy(executer, proxyScheme)
            module.allowAll()
    
            then:
            succeeds('listJars')
    
            and:
            if (isTunnel()) {
                proxyServer.requestCount == 1
            } else {
                proxyServer.requestCount == 2
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesStatusIntegrationTest.groovy

        def "snapshot and release versions have correct status"() {
            given:
            repo.module('group1', 'projectA', '1.0').publish().allowAll()
            repo.module('group2', 'projectB', '2.0-SNAPSHOT').publish().allowAll()
            def c = repo.module('group2', 'projectC', '12-SNAPSHOT').publish().allowAll()
    
            and:
            buildFile.text =
    """
    $repoDeclaration
    configurations { compile }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PostPluginResolutionFailuresIntegrationSpec.groovy

            executer.requireOwnGradleUserHomeDir()
        }
    
        def "error loading plugin"() {
            pluginBuilder.addUnloadablePlugin(PLUGIN_ID)
            pluginBuilder.publishAs(GROUP, ARTIFACT, VERSION, pluginRepo, executer).allowAll()
    
            buildScript applyPlugin()
    
            expect:
            fails("verify")
            failure.assertThatDescription(startsWith("An exception occurred applying plugin request [id: 'org.my.myplugin', version: '1.0']"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/artifactreuse/CacheReuseCrossVersionIntegrationTest.groovy

    }
    
    task retrieve(type: Sync) {
        into 'libs'
        from configurations.compile
    }
    """
            and:
            def userHome = file('user-home')
    
            when:
            projectB.allowAll()
    
            and:
            version previous withGradleUserHomeDir userHome withTasks 'retrieve' withArguments '-i' run()
    
            then:
            file('libs').assertHasDescendants('projectB-1.0.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top