Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newInfos (0.03 sec)

  1. cmd/erasure.go

    			newDisks = append(newDisks, disks[i])
    			newInfos = append(newInfos, infos[i])
    		} else {
    			scanningDisks = append(scanningDisks, disks[i])
    			scanningInfos = append(scanningInfos, infos[i])
    		}
    	}
    
    	// Prefer non-scanning disks over disks which are currently being scanned.
    	newDisks = append(newDisks, scanningDisks...)
    	newInfos = append(newInfos, scanningInfos...)
    
    	/// Then add healing disks.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    	commonMutations := calcCommonCounter(infos, readQuorum)
    	for i, info := range infos {
    		mutations := info.Metrics.TotalDeletes + info.Metrics.TotalWrites
    		if mutations >= commonMutations {
    			newDisks = append(newDisks, disks[i])
    			newInfos = append(newInfos, infos[i])
    		}
    	}
    
    	return newDisks, newInfos
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 30.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

                    // Create new handle info if not found
                    HandleInfo newInfo =
                            new HandleInfo(path, guid, fileId, HandleType.PERSISTENT, context.getConfig().getPersistentHandleTimeout(), null);
                    handles.put(path, newInfo);
                    guidToHandle.put(guid, newInfo);
                    persistHandle(newInfo);
                    log.debug("Created and stored new handle for path: {}", path);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

            try {
                FileInfo existing = children.get(childName);
                FileInfo newInfo = new FileInfo(childName, size, lastModified, isDirectory, attributes, creationTime, lastAccessTime);
    
                if (existing == null || !existing.matches(size, lastModified, attributes)) {
                    children.put(childName, newInfo);
                    hasChanges = true;
                    lastUpdateTime = System.currentTimeMillis();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. docs/smb3-features/04-directory-leasing-design.md

            lock.writeLock().lock();
            try {
                FileInfo existing = children.get(childName);
                FileInfo newInfo = new FileInfo(childName, attrs);
                
                if (existing == null || !existing.matches(attrs)) {
                    children.put(childName, newInfo);
                    hasChanges = true;
                    lastUpdateTime = System.currentTimeMillis();
                }
            } finally {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top