Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for getCaches (0.22 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/DefaultModuleArtifactsCache.java

        }
    
        @Override
        protected void store(ArtifactsAtRepositoryKey key, AbstractArtifactsCache.ModuleArtifactsCacheEntry entry) {
            getCache().put(key, entry);
        }
    
        @Override
        protected ModuleArtifactsCacheEntry get(ArtifactsAtRepositoryKey key) {
            return getCache().getIfPresent(key);
        }
    
        private static class ModuleArtifactsKeySerializer extends AbstractSerializer<ArtifactsAtRepositoryKey> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. operator/pkg/cache/cache.go

    	objectCachesMu.Lock()
    	defer objectCachesMu.Unlock()
    	objectCaches = make(map[string]*ObjectCache)
    	metrics.CacheFlushTotal.Increment()
    }
    
    // GetCache returns the object Cache for the given name, creating one in the global Cache if needed.
    func GetCache(name string) *ObjectCache {
    	objectCachesMu.Lock()
    	defer objectCachesMu.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 13:12:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

         */
        Long maybeGetPid();
    
        /**
         * Detaches the current process from its terminal/console to properly put it in the background, if possible.
         *
         * @return true if the process was successfully detached.
         */
        boolean maybeDetachProcess();
    
        /**
         * Detaches the current process from its terminal/console to properly put it in the background.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. tests/integration/ambient/cnirepair/main_test.go

    	apps.Uncaptured = match.ServiceName(echo.NamespacedName{Name: Uncaptured, Namespace: apps.Namespace}).GetMatches(echos)
    	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)
    
    	return nil
    }
    
    func TestTrafficWithCNIRepair(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/MultipleCandidatesResult.java

    import org.gradle.api.attributes.MultipleCandidatesDetails;
    
    import java.util.Set;
    
    public interface MultipleCandidatesResult<T> extends MultipleCandidatesDetails<T> {
        boolean hasResult();
    
        Set<T> getMatches();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 883 bytes
    - Viewed (0)
  8. tests/integration/security/ca_custom_root/secure_naming_test.go

    			to := match.Namespace(testNamespace).GetMatches(apps.EchoNamespace.B)
    			for _, cluster := range t.Clusters() {
    				t.NewSubTest(fmt.Sprintf("From %s", cluster.StableName())).Run(func(t framework.TestContext) {
    					a := match.And(match.Cluster(cluster), match.Namespace(testNamespace)).GetMatches(apps.EchoNamespace.A)[0]
    					b := match.And(match.Cluster(cluster), match.Namespace(testNamespace)).GetMatches(apps.EchoNamespace.B)[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/os/example_test.go

    }
    
    func ExampleUserCacheDir() {
    	dir, dirErr := os.UserCacheDir()
    	if dirErr == nil {
    		dir = filepath.Join(dir, "ExampleUserCacheDir")
    	}
    
    	getCache := func(name string) ([]byte, error) {
    		if dirErr != nil {
    			return nil, &os.PathError{Op: "getCache", Path: name, Err: os.ErrNotExist}
    		}
    		return os.ReadFile(filepath.Join(dir, name))
    	}
    
    	var mkdirOnce sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. tests/integration/telemetry/tracing/tracing.go

    		return func(i echo.Instance) bool {
    			return strings.HasPrefix(i.Config().Service, prefix)
    		}
    	}
    	client = servicePrefix("client").GetMatches(echos)
    	server = match.ServiceName(echo.NamespacedName{Name: "server", Namespace: appNsInst}).GetMatches(echos)
    	ingInst = ist.IngressFor(ctx.Clusters().Default())
    	addrs, _ := ingInst.HTTPAddresses()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top