Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toRelease (0.04 sec)

  1. src/test/java/jcifs/smb/BufferCacheImplTest.java

        void reuseWorksForVariousCacheSizes(int cacheSize) {
            BufferCacheImpl impl = new BufferCacheImpl(cacheSize, 6);
            byte[] toRelease = new byte[5];
            toRelease[0] = 42;
            impl.releaseBuffer(toRelease);
    
            byte[] fromCache = impl.getBuffer();
            assertSame(toRelease, fromCache, "Released buffer should be returned from cache regardless of cache size");
            // Zeroed upon release
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

    - Remove `NodeLease` feature gate that was graduated and locked to stable in 1.17 release. ([#105222](https://github.com/kubernetes/kubernetes/pull/105222), [@cyclinder](https://github.com/cyclinder))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.16.md

    ### Node
    
    - Remove PIDs cgroup controller requirement when related feature gates are disabled
      ([#79073](https://github.com/kubernetes/kubernetes/pull/79073), [@rafatio](https://github.com/rafatio))
    - Fix kubelet NodeLease potential performance issues. Kubelet now will try to update lease using cached one instead of get from API Server every time. ([#81174](https://github.com/kubernetes/kubernetes/pull/81174), [@answer1991](https://github.com/answer1991))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 345.2K bytes
    - Viewed (0)
Back to top