Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,600 for delegatee (0.18 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. cluster/addons/metrics-server/auth-delegator.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: metrics-server:system:auth-delegator
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:auth-delegator
    subjects:
    - kind: ServiceAccount
      name: metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 20:14:57 UTC 2017
    - 398 bytes
    - Viewed (0)
  4. releasenotes/notes/sidecar-vs-delegate.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 02:00:37 UTC 2020
    - 151 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top