- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 108 for allocation (0.36 sec)
-
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
return buffer; } private byte[] createMockFileStandardInfoBuffer() { // Create a buffer that represents FileStandardInfo data byte[] buffer = new byte[24]; // Mock allocation size (8 bytes) for (int i = 0; i < 8; i++) { buffer[i] = (byte) i; } // Mock end of file (8 bytes) for (int i = 8; i < 16; i++) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
@Test public void testRdmaBufferManager() throws Exception { RdmaProvider provider = new TcpRdmaProvider(); // Use TCP for testing RdmaBufferManager manager = new RdmaBufferManager(provider); // Test buffer allocation RdmaMemoryRegion region = manager.getSendRegion(1024); assertNotNull(region); assertTrue(region.getSize() >= 1024); // Test buffer release manager.releaseSendRegion(region);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
// private static final Logger logger = LogManager.getLogger(AdminMaintenanceAction.class); private static final String[] CAT_NAMES = { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks", "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
this.dialectRevision = SMBUtil.readInt2(buffer, bufferIndex); final int negotiateContextCount = SMBUtil.readInt2(buffer, bufferIndex + 2); // Validate negotiate context count - prevent excessive memory allocation if (negotiateContextCount < 0 || negotiateContextCount > 100) { throw new SMBProtocolDecodingException("Invalid negotiate context count: " + negotiateContextCount + " (must be 0-100)"); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/webapp/WEB-INF/web.xml
<error-code>400</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=badRequest</location> </error-page> <error-page> <error-code>401</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=badAuth</location> </error-page> <error-page> <error-code>403</error-code> <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> </error-page> <error-page>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 7.9K bytes - Viewed (0) -
pom.xml
<sources> <source> <location>${project.build.directory}/tomcat-lib</location> </source> </sources> </mapping> <mapping> <directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory> <sources> <source> <location>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess</location> <includes>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java
this.caption = caption; } /** * Gets the geographic location of the image. * @return the geographic location */ public String getGeoLocation() { return geoLocation; } /** * Sets the geographic location of the image. * @param geoLocation the geographic location to set */ public void setGeoLocation(final String geoLocation) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java
import java.io.Serializable; /** * The Sitemap interface represents a sitemap entity with location and last modification date. * It extends the Serializable interface to allow sitemap objects to be serialized. */ public interface Sitemap extends Serializable { /** * Retrieves the location (URL) of the sitemap. * * @return the location of the sitemap as a String. */ String getLoc(); /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
*/ public SitemapVideo() { // Default constructor } /** * Gets the thumbnail location URL. * @return the thumbnail URL */ public String getThumbnailLoc() { return thumbnailLoc; } /** * Sets the thumbnail location URL. * @param thumbnailLoc the thumbnail URL to set */ public void setThumbnailLoc(final String thumbnailLoc) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0)