Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for getCaches (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * Returns the configuration for caches stored in the user home directory.
         *
         * @since 8.0
         */
        @Incubating
        CacheConfigurations getCaches();
    
        /**
         * Configures the settings for caches stored in the user home directory.
         *
         * @param cachesConfiguration the configuration
         *
         * @since 8.0
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. tests/integration/ambient/main_test.go

    	apps.Captured = match.ServiceName(echo.NamespacedName{Name: Captured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Mesh = inMesh.GetMatches(echos)
    	apps.MeshExternal = match.Not(inMesh).GetMatches(echos)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

                        indexedCache.afterLockAcquire(stateAtOpen);
                    }
                } else {
                    entry.assertCompatibleCacheParameters(parameters);
                }
                return entry.getCache();
            } finally {
                stateLock.unlock();
            }
        }
    
        private <K, V> File findCacheFile(IndexedCacheParameters<K, V> parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            request.userProperties(session.getUserProperties());
            request.modelCache(DefaultModelCache.newInstance(session, false));
            if (session.getCache() != null) {
                Map<?, ?> map = (Map) session.getCache().get(session, DefaultModelCache.class.getName());
                List<String> paths = map.keySet().stream()
                        .map(Object::toString)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                    result = new DefaultMultipleCandidateResult<>(requested, candidates);
                    rules.execute(result);
                    if (result.hasResult()) {
                        return result.getMatches();
                    }
                }
    
                rules = producerSchema.disambiguationRules(attribute);
                if (rules.doesSomething()) {
                    if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            PluginVersionResult result = resolveFromProject(request);
    
            if (result == null) {
                ConcurrentMap<Key, PluginVersionResult> cache = getCache(request);
                Key key = getKey(request);
                result = cache.get(key);
    
                if (result == null) {
                    result = resolveFromRepository(request);
    
                    logger.debug(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. pkg/volume/portworx/portworx.go

    }
    
    var _ volume.Unmounter = &portworxVolumeUnmounter{}
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    func (c *portworxVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    // Unmounts the bind mount, and detaches the disk only if the PD
    // resource was the last reference to that disk on the kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/34051")
    			// Get all the clusters where service B resides.
    			bClusters := serviceB.GetMatches(echos.Instances).Clusters()
    
    			// Test exporting service B exclusively in each cluster.
    			for _, exportCluster := range bClusters {
    				exportCluster := exportCluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	// Watch for changes to primary resource IstioOperator
    	err = c.Watch(source.Kind(
    		mgr.GetCache(),
    		&iopv1alpha1.IstioOperator{},
    		&handler.TypedEnqueueRequestForObject[*iopv1alpha1.IstioOperator]{},
    		operatorPredicates,
    	))
    	if err != nil {
    		return err
    	}
    	// watch for changes to Istio resources
    	err = watchIstioResources(mgr.GetCache(), c)
    	if err != nil {
    		return err
    	}
    	scope.Info("Controller added")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

        def key = new TestBuildCacheKey(0x01234567abcdef)
        private config = TestUtil.newInstance(HttpBuildCache.class)
    
        HttpBuildCacheService cacheRef
    
        HttpBuildCacheService getCache() {
            if (cacheRef == null) {
                buildCacheDescriber = new NoopBuildCacheDescriber()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top