Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,600 for delegatee (0.17 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

        }
    
        def "mixes in toString() implementation that delegates to delegate object when it has a displayName property"() {
            def state = Stub(ModelElementState)
            def delegate = new Object() {
                String getDisplayName() {
                    return "<delegate>"
                }
            }
    
            expect:
            def proxyClass = generate(SomeType, delegate.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            override fun toString(): String = "CrossProjectModelAccessProjectEvaluationListener($delegate)"
        }
    
        // region delegated members
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<*>) =
            delegate.apply(closure)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/BaseModuleComponentRepositoryTest.groovy

        final delegate = Mock(ModuleComponentRepository)
        final localAccess = Mock(ModuleComponentRepositoryAccess)
        final remoteAccess = Mock(ModuleComponentRepositoryAccess)
    
        def "delegates id and name methods"() {
            when:
            final repository = new BaseModuleComponentRepository(delegate, localAccess, remoteAccess)
            1 * delegate.id >> "id"
            1 * delegate.name >> "name"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnSingleFailureIntegrationTest.groovy

        tasks.succeeds.mustRunAfter tasks.fails
    """
            fails(buildA, ":delegate")
    
            then:
            failure.assertHasFailures(1)
            assertTaskExecuted(":buildB", ":fails")
            assertTaskNotExecuted(":buildB", ":succeeds")
            assertTaskNotExecuted(":", ":delegate")
        }
    
        def "attempts all dependencies when run with --continue when one delegated task dependency fails"() {
            when:
            buildA.buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensibleDynamicObject.java

            return new BeanDynamicObject(delegate, publicType);
        }
    
        private void updateDelegates() {
            DynamicObject[] delegates = new DynamicObject[6];
            delegates[0] = dynamicDelegate;
            delegates[1] = extraPropertiesDynamicObject;
            int idx = 2;
            if (beforeConvention != null) {
                delegates[idx++] = beforeConvention;
            }
            if (convention != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.groovy

            then:
            1 * factory.create() >> delegate
            1 * delegate.startProcessing(resultProcessor)
            then:
            1 * delegate.processTestClass(test1)
            then:
            1 * delegate.processTestClass(test2)
            then:
            1 * delegate.stop()
            0 * _._
        }
    
        def 'creates new delegate processor on (n + 1)th test'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/delegated.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/SplitFileContentCacheFactory.java

    import java.io.File;
    import java.io.IOException;
    
    /**
     * A {@link FileContentCacheFactory} that delegates to the global cache for files that are known to be immutable and shared between different builds.
     * All other requests are delegated to the build-local cache. Closing this factory will only close the local delegate, not the global one.
     */
    public class SplitFileContentCacheFactory implements FileContentCacheFactory, Closeable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 18 16:53:35 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/DefaultArtifactFilterManager.java

        // this is a live injected collection
        protected final List<ArtifactFilterManagerDelegate> delegates;
    
        protected Set<String> excludedArtifacts;
    
        private final Set<String> coreArtifacts;
    
        @Inject
        public DefaultArtifactFilterManager(List<ArtifactFilterManagerDelegate> delegates, CoreExports coreExports) {
            this.delegates = delegates;
            this.coreArtifacts = coreExports.getExportedArtifacts();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/priority_test.go

    	tcs := []struct {
    		name string
    
    		delegate     RESTMapper
    		kindPatterns []schema.GroupVersionKind
    		result       schema.GroupVersionKind
    		err          string
    	}{
    		{
    			name:     "error",
    			delegate: fixedRESTMapper{err: errors.New("delegateErr")},
    			err:      "delegateErr",
    		},
    		{
    			name:     "single hit + error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 06 15:24:58 UTC 2018
    - 13.6K bytes
    - Viewed (0)
Back to top