Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 834 for delegates (0.18 sec)

  1. pilot/pkg/model/sidecar.go

    		out.appendSidecarServices(servicesAdded, s)
    	}
    	defaultEgressListener.services = out.services
    
    	// add dependencies on delegate virtual services
    	delegates := ps.DelegateVirtualServices(defaultEgressListener.virtualServices)
    	for _, delegate := range delegates {
    		out.AddConfigDependencies(delegate)
    	}
    	for _, vs := range defaultEgressListener.virtualServices {
    		for _, cfg := range VirtualServiceDependencies(vs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.Set;
    
    /**
     * Build cache implementation that delegates to a service accessible via HTTP.
     */
    public class HttpBuildCacheService implements BuildCacheService {
        private static final Logger LOGGER = LoggerFactory.getLogger(HttpBuildCacheService.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-test-part.h

    // statement generates new fatal failures. To do so it registers itself as the
    // current test part result reporter. Besides checking if fatal failures were
    // reported, it only delegates the reporting to the former result reporter.
    // The original result reporter is restored in the destructor.
    // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
    class GTEST_API_ HasNewFatalFailureHelper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

        }
    
    
    /**
     * Provides a [TaskProvider] delegate for the task named after the property.
     */
    operator fun ExistingDomainObjectDelegateProvider<out TaskContainer>.provideDelegate(
        receiver: Any?,
        property: KProperty<*>
    ) = ExistingDomainObjectDelegate.of(
        delegateProvider.named(property.name)
    )
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepositoryTest.groovy

            then:
            realLocalAccess.resolveArtifactsWithType(component, artifactType, result) >> {
                result.resolved([Mock(ComponentArtifactMetadata)])
            }
            0 * _
        }
    
        def "delegates estimates for fetching metadata to remote when not found in cache (remote says #remoteAnswer)"() {
            def module = Mock(ModuleComponentIdentifier)
            def localAccess = repo.localAccess
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    	// should that become a staging repo.
    	ctx, cancel := context.WithCancelCause(context.Background())
    	var errCh chan error
    	tearDown := func() {
    		// Cancel is stopping apiextensions apiserver and its
    		// delegates, which itself is cleaning up after itself,
    		// including shutting down its storage layer.
    		cancel(errors.New("tearing down"))
    
    		// If the apiextensions apiserver was started, let's wait for
    		// it to shutdown clearly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  7. guava/src/com/google/common/collect/Collections2.java

          // collection.
          return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
        }
    
        return new FilteredCollection<>(checkNotNull(unfiltered), checkNotNull(predicate));
      }
    
      /**
       * Delegates to {@link Collection#contains}. Returns {@code false} if the {@code contains} method
       * throws a {@code ClassCastException} or {@code NullPointerException}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Collections2.java

          // collection.
          return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
        }
    
        return new FilteredCollection<>(checkNotNull(unfiltered), checkNotNull(predicate));
      }
    
      /**
       * Delegates to {@link Collection#contains}. Returns {@code false} if the {@code contains} method
       * throws a {@code ClassCastException} or {@code NullPointerException}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

        override fun getProject(): Project =
            delegate.project
    
        override fun getIsolated(): IsolatedProject =
            delegate.isolated
    
        override fun dependencies(configureClosure: Closure<*>) =
            delegate.dependencies(configureClosure)
    
        override fun getPath(): String =
            delegate.path
    
        override fun getBuildTreePath(): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ImmutableList<ListenableFuture<Long>> delegates =
            inCompletionOrder(ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3));
    
        future1.set(1L);
        // Cannot cancel a complete delegate
        assertFalse(delegates.get(0).cancel(true));
        // Cancel the delegate before the input future is done
        assertTrue(delegates.get(1).cancel(true));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top