Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updatedRules (0.85 sec)

  1. cmd/bucket-lifecycle-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Create a map of updated set of rules in request
    	updatedRules := make(map[string]lifecycle.Rule, len(bucketLifecycle.Rules))
    	for _, rule := range bucketLifecycle.Rules {
    		updatedRules[rule.ID] = rule
    	}
    
    	// Get list of rules for the bucket from disk
    	meta, err := globalBucketMetadataSys.GetConfigFromDisk(ctx, bucket)
    	if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Jan 20 14:49:07 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

        
        // Wait for change notification
        Thread.sleep(2000);
        
        // Cache should be invalidated, new listing should include new file
        SmbFile[] updatedFiles = dir.listFiles();
        assertEquals(initialFiles.length + 1, updatedFiles.length);
    }
    ```
    
    ## 9. Error Handling
    
    ### 9.1 Cache Consistency
    ```java
    public class CacheConsistencyManager {
    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