1. 01 9月, 2023 1 次提交
    • S
      Refine Reactor field precomputing on native · 1641cb75
      Sébastien Deleuze 提交于
      This commit refines Reactor field precomputing on native
      to only compute at build-time fields in the reactor.core
      package, since doing so in reactor.netty has unwanted side
      effects like Epoll always disabled.
      
      Closes gh-31141
      1641cb75
  2. 31 8月, 2023 2 次提交
  3. 28 8月, 2023 4 次提交
  4. 27 8月, 2023 2 次提交
  5. 26 8月, 2023 8 次提交
  6. 25 8月, 2023 2 次提交
    • S
      Skip searching of nonexistent directory in PathMatchingResourcePatternResolver · 89b7a6bf
      Sam Brannen 提交于
      Prior to this commit, when PathMatchingResourcePatternResolver
      processed a `file:` pattern (for example, `file:/app-config/**`) for a
      `rootPath` that did not exist in the filesystem, the resolver attempted
      to search the directory and logged a WARNING message similar to the
      following when it failed to do so.
      
      Failed to search in directory [/app-config/] for files matching pattern
      [**]: java.nio.file.NoSuchFileException: /app-config/
      
      To avoid unnecessary attempts to search a nonexistent directory,
      PathMatchingResourcePatternResolver now skips searching of a nonexistent
      directory and preemptively logs an INFO message similar to the
      following.
      
      Skipping search for files matching pattern [**]: directory [/app-config]
      does not exist
      
      Closes gh-31111
      89b7a6bf
    • S
      Ensure doFindPathMatchingFileResources() returns a mutable Set · 19570338
      Sam Brannen 提交于
      This commit ensures that PathMatchingResourcePatternResolver's
      doFindPathMatchingFileResources() method returns a mutable Set in order
      to comply with the documented contract.
      19570338
  7. 24 8月, 2023 3 次提交
  8. 23 8月, 2023 1 次提交
  9. 22 8月, 2023 4 次提交
  10. 21 8月, 2023 10 次提交
  11. 18 8月, 2023 3 次提交