Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

                        }
                        processParentGroup(user, updatedGroups, updatedRoles, groupId);
                    }
    
                    // Update groups/roles
                    final String[] finalGroups = updatedGroups.stream().distinct().toArray(n -> new String[n]);
                    final String[] finalRoles = updatedRoles.stream().distinct().toArray(n -> new String[n]);
                    user.setGroups(finalGroups);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 56.7K bytes
    - Viewed (0)
Back to top