Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for getCaches (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/PersistentModuleMetadataCache.java

            this.artifactCacheLockingManager = cacheAccessCoordinator;
        }
    
        private IndexedCache<ModuleComponentAtRepositoryKey, ModuleMetadataCacheEntry> getCache() {
            if (cache == null) {
                cache = initCache();
            }
            return cache;
        }
    
        private IndexedCache<ModuleComponentAtRepositoryKey, ModuleMetadataCacheEntry> initCache() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K 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/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)
  4. pkg/test/framework/components/echo/match/matcher.go

    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    // Matcher is used to filter matching instances
    type Matcher func(echo.Instance) bool
    
    // GetMatches returns the subset of echo.Instances that match this Matcher.
    func (m Matcher) GetMatches(i echo.Instances) echo.Instances {
    	out := make(echo.Instances, 0)
    	for _, i := range i {
    		if m(i) {
    			out = append(out, i)
    		}
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/volume/fc/disk_manager.go

    	MakeGlobalVDPDName(disk fcDisk) string
    	// Attaches the disk to the kubelet's host machine.
    	AttachDisk(b fcDiskMounter) (string, error)
    	// Detaches the disk from the kubelet's host machine.
    	DetachDisk(disk fcDiskUnmounter, devicePath string) error
    	// Detaches the block disk from the kubelet's host machine.
    	DetachBlockFCDisk(disk fcDiskUnmapper, mntPath, devicePath string) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/volume/iscsi/disk_manager.go

    	MakeGlobalVDPDName(disk iscsiDisk) string
    	// Attaches the disk to the kubelet's host machine.
    	AttachDisk(b iscsiDiskMounter) (string, error)
    	// Detaches the disk from the kubelet's host machine.
    	DetachDisk(disk iscsiDiskUnmounter, mntPath string) error
    	// Detaches the block disk from the kubelet's host machine.
    	DetachBlockISCSIDisk(disk iscsiDiskUnmapper, mntPath string) error
    }
    
    // utility to mount a disk based filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/testing/testing.go

    			*volume.Spec.VolumeMode = v1.PersistentVolumeFilesystem
    		}
    
    		// Store the updated object to appropriate places.
    		r.volumes[volume.Name] = volume
    		for _, w := range r.getWatches(action.GetResource(), action.GetNamespace()) {
    			w.Add(volume)
    		}
    		r.changedObjects = append(r.changedObjects, volume)
    		r.changedSinceLastSync++
    		logger.V(4).Info("Created volume", "volumeName", volume.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top