dweiss opened a new issue, #14050: URL: https://github.com/apache/lucene/issues/14050
### Description There is a check added to BaseDirectoryTest case in #13998 which has been failing since that PR was merged (nearly all Windows builds failing on jenkins): ``` var loaded = in.isLoaded(); if (FilterDirectory.unwrap(dir) instanceof MMapDirectory // direct IO wraps MMap but does not support isLoaded && !(dir.getClass().getName().contains("DirectIO"))) { assertTrue(loaded.isPresent()); assertTrue(loaded.get()); } else { assertFalse(loaded.isPresent()); } ``` The isLoaded optional has a value of false, even though it is a mmap directory. Seems like isLoaded in MemorySegment always returns false on Windows? ### Version and environment details _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org