Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,156 for data4 (0.01 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java

         *
         * @param config the configuration to use
         * @param fid the file ID of the named pipe
         * @param data the data buffer to send
         * @param off the offset in the data buffer
         * @param len the length of data to send
         */
        public TransTransactNamedPipe(final Configuration config, final int fid, final byte[] data, final int off, final int len) {
            super(config, SMB_COM_TRANSACTION, TRANS_TRANSACT_NAMED_PIPE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. docs/smb3-features/04-directory-leasing-design.md

            // Parse FILE_NOTIFY_INFORMATION structures from response
            byte[] data = response.getOutputBuffer();
            int offset = 0;
            
            while (offset < data.length) {
                int nextEntryOffset = readInt4(data, offset);
                int action = readInt4(data, offset + 4);
                int fileNameLength = readInt4(data, offset + 8);
                
                // Extract filename
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

     * Callback interface for handling index update operations during data store processing.
     * This interface provides methods for storing documents, tracking processing metrics,
     * and committing changes to the search index.
     */
    public interface IndexUpdateCallback {
    
        /**
         * Stores a document in the search index with the specified parameters and data.
         *
         * @param paramMap the data store parameters containing configuration and metadata
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
            resultData.setEncoding(fessConfig.getCrawlerCrawlingDataEncoding());
    
            return resultData;
        }
    
        /**
         * Generate the data.
         * @param responseData The response data.
         * @return The data.
         */
        protected Map<String, Object> generateData(final ResponseData responseData) {
            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceHttpTest.kt

            .setHeader("content-type", "text/event-stream")
            .body("data: hey\n\n")
            .build(),
        )
        newEventSource()
        listener.assertFailure("timeout")
      }
    
      @Test
      fun retainsAccept() {
        server.enqueue(
          MockResponse
            .Builder()
            .body(
              """
              |data: hey
              |
              |
              """.trimMargin(),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up data for search result pagination.
         *
         * @param data the render data
         * @param form the search form
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/SessionServicePacketTest.java

        void testReadWireFormat() throws IOException {
            byte[] data = new byte[50];
            data[0] = (byte) 0x85; // SESSION_KEEP_ALIVE
            data[1] = 0x00;
            data[2] = 0x00;
            data[3] = 0x0A; // Length = 10
    
            ByteArrayInputStream bais = new ByteArrayInputStream(data);
    
            int totalRead = packet.readWireFormat(bais, data, 0);
    
            assertEquals(14, totalRead); // 4 header + 10 trailer
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

         *
         * @param data the render data to register the roles and labels with
         */
        protected void registerRolesAndLabels(final RenderData data) {
            RenderDataUtil.register(data, "labelSettingEnabled", fessConfig.isFormAdminLabelInConfigEnabled());
            RenderDataUtil.register(data, "roleTypeItems", roleTypeService.getRoleTypeList());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Search with paging.
         * @param data The render data.
         * @param form The search form.
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
            // page navi
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/SearchBody.java

    /**
     * Search request body for data configuration administration.
     * Extends BaseSearchBody with data configuration-specific search parameters.
     */
    public class SearchBody extends BaseSearchBody {
    
        /** The data configuration name to search for. */
        public String name;
    
        /** The handler name to search for in data configurations. */
        public String handlerName;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
Back to top