Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,393 for delegatee (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationScriptPlugin.java

    import org.gradle.internal.resource.TextResource;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.net.URI;
    
    /**
     * A decorating {@link ScriptPlugin} implementation that delegates to a given
     * delegatee implementation, but wraps the apply() execution in a
     * {@link org.gradle.internal.operations.BuildOperation}.
     */
    public class BuildOperationScriptPlugin implements ScriptPlugin {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            IllegalStateException t = thrown()
            t.message == "Cannot change attributes of configuration ':conf' after it has been locked for mutation"
        }
    
        def "wrapper attribute container behaves similar to the delegatee"() {
            given:
            def conf = conf()
            def a1 = Attribute.of('a1', String)
            def a2 = Attribute.of('a2', String)
            def containerMutable = conf.getAttributes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

        this.delegateRef = Preconditions.checkNotNull(delegate);
      }
    
      /** A runnable that is called when the delegate or the timer completes. */
      private static final class Fire<V extends @Nullable Object> implements Runnable {
        @CheckForNull @LazyInit TimeoutFuture<V> timeoutFutureRef;
    
        Fire(TimeoutFuture<V> timeoutFuture) {
          this.timeoutFutureRef = timeoutFuture;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

        def buildB = gradle.includedBuild('buildB')
        task delegate {
            dependsOn 'delegate1', 'delegate2'
        }
    
        task delegate1 {
            dependsOn buildB.task(':logProject')
            dependsOn buildB.task(':b1:logProject')
        }
    
        task delegate2 {
            dependsOn buildB.task(':logProject')
        }
    """
    
            execute(buildA, ":delegate")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/intellij-delegate-to-build.png

    intellij-delegate-to-build.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/delegated.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

        this.delegateRef = Preconditions.checkNotNull(delegate);
      }
    
      /** A runnable that is called when the delegate or the timer completes. */
      private static final class Fire<V extends @Nullable Object> implements Runnable {
        @CheckForNull @LazyInit TimeoutFuture<V> timeoutFutureRef;
    
        Fire(TimeoutFuture<V> timeoutFuture) {
          this.timeoutFutureRef = timeoutFuture;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice.go

    		return nil
    	}
    	delegate.Match = merged
    
    	if delegate.Name == "" {
    		delegate.Name = root.Name
    	} else if root.Name != "" {
    		delegate.Name = root.Name + "-" + delegate.Name
    	}
    	if delegate.Rewrite == nil {
    		delegate.Rewrite = root.Rewrite
    	}
    	if delegate.DirectResponse == nil {
    		delegate.DirectResponse = root.DirectResponse
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top