Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,092 for delegatee (0.11 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. 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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. 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)
Back to top