Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,407 for distances (0.17 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         *
         * @param retentionFilter Determines which values should be retained till the next build.
         */
        <K, V> CrossBuildInMemoryCache<K, V> newCacheRetainingDataFromPreviousBuild(Predicate<V> retentionFilter);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tests/integration/security/util/framework.go

    	Namespace3    namespace.Instance
    	A, B, C, D, E echo.Instances
    	Multiversion  echo.Instances
    	Headless      echo.Instances
    	Naked         echo.Instances
    	VM            echo.Instances
    	HeadlessNaked echo.Instances
    	All           echo.Instances
    	External      echo.Instances
    }
    
    func EchoConfig(name string, headless bool, annos map[string]string) echo.Config {
    	out := echo.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactory.java

            }
    
            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Instances of Provider<RegularFile>.");
                visitor.candidate("Instances of Provider<Directory>.");
                visitor.candidate("Instances of Provider<File>.");
            }
    
            @Override
            protected ConfigurablePublishArtifact parseType(Provider<?> notation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiationScheme.java

        /**
         * Creates a new {@link InstanceFactory} for the given type, which creates instances based on the configuration of this scheme.
         */
        <T> InstanceFactory<T> forType(Class<T> type);
    
        /**
         * Creates a new {@link InstantiationScheme} which creates instances using the given services, based on the configuration of this scheme.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/PublishArtifactNotationParserFactoryTest.groovy

    The following types/formats are supported:
      - Instances of ConfigurablePublishArtifact.
      - Instances of PublishArtifact.
      - Instances of AbstractArchiveTask, for example jar.
      - Instances of Provider<RegularFile>.
      - Instances of Provider<Directory>.
      - Instances of Provider<File>.
      - Instances of RegularFile.
      - Instances of Directory.
      - Instances of File.
      - Maps with 'file' key'''))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ExecSpecFactory.java

    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    
    /**
     * The factory to build appropriate ExecSpec and JavaExecSpec instances. The returned
     * instances, especially JavaExecSpec, must conform to the {@link BaseExecSpec#getCommandLine()} contract.
     *
     * These instances will not be exposed to the user code directly, so there is no need of decoration.
     */
    @ServiceScope(Scope.Build.class)
    public interface ExecSpecFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. docs/orchestration/docker-compose/README.md

    With Compose, you use a Compose file to configure MinIO services. Then, using a single command, you can create and launch all the Distributed MinIO instances from your configuration. Distributed MinIO instances will be deployed in multiple containers on the same host. This is a great way to set up development, testing, and staging environments, based on Distributed MinIO.
    
    ## 1. Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	aggregateCtl := buildMockController()
    
    	// Get Instances from mockAdapter1
    	instances := aggregateCtl.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{mock.HelloInstanceV0}})
    	if len(instances) != 6 {
    		t.Fatalf("Returned GetProxyServiceTargets' amount %d is not correct", len(instances))
    	}
    	for _, inst := range instances {
    		if inst.Service.Hostname != mock.HelloService.Hostname {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ListeningExecutorService.java

    import java.util.concurrent.RejectedExecutionException;
    import java.util.concurrent.TimeUnit;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An {@link ExecutorService} that returns {@link ListenableFuture} instances. To create an instance
     * from an existing {@link ExecutorService}, call {@link
     * MoreExecutors#listeningDecorator(ExecutorService)}.
     *
     * @author Chris Povirk
     * @since 10.0
     */
    @DoNotMock(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 20 10:45:35 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    // got at t1 can accidentally override that got at t2 if multiple threads are
    // running this function. Queueing ensures latest updated wins.
    func (s *Controller) edsUpdate(instances []*model.ServiceInstance) {
    	// Find all keys we need to lookup
    	keys := sets.NewWithLength[instancesKey](len(instances))
    	for _, i := range instances {
    		keys.Insert(makeInstanceKey(i))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top