Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

         *
         * @param data The data to retrieve from the cache, must not be {@code null}.
         * @return The data being retrieved from the cache, never {@code null}.
         */
        T fromCache(T data);
    
        /**
         * The tag used to denote raw model data.
         */
        ModelCacheTag<ModelData> RAW = new ModelCacheTag<ModelData>() {
    
            @Override
            public String getName() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/BufferCacheImplTest.java

            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
            for (byte value : fromCache) {
                assertEquals(0, value);
            }
        }
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top