Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 178 for motala (0.06 sec)

  1. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            }
    
            /**
             * Gets the total length of the notification response.
             *
             * @return the length in bytes of the entire notification response
             */
            public int getLength() {
                return length;
            }
    
            /**
             * Sets the total length of the notification response.
             *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java

            final List<FailureUrl> list = failureUrlService.getFailureUrlList(pager);
            return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                    .total(pager.getAllRecordCount())
                    .status(ApiResult.Status.OK)
                    .result());
        }
    
        // GET /api/admin/failureurl/log/{id}
        /**
         * Retrieves a specific failure URL log by ID.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        public Integer pn;
    
        /**
         * Similar document hash for finding related documents.
         */
        @Size(max = 1000)
        public String sdh;
    
        /**
         * Parameter to control tracking of total hits in search results.
         */
        @Size(max = 100)
        public String track_total_hits;
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
            super();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java

            return asJson(new ApiResult.ApiLogsResponse<EditBody>().logs(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                    .total(pager.getAllRecordCount())
                    .status(ApiResult.Status.OK)
                    .result());
        }
    
        /**
         * Retrieves a specific crawling info log by ID.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Request.java

            dstIndex += 4;
    
            // Padding to align data to 8-byte boundary
            dstIndex += 4;
    
            // Write durable handle V2 request data (32 bytes total)
            // MS-SMB2 2.2.13.2.4 structure:
            SMBUtil.writeInt4((int) getTimeoutFor100Ns(), dst, dstIndex); // Timeout (4 bytes in 100-ns intervals)
            dstIndex += 4;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java

            return asJson(
                    new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                            .total(pager.getAllRecordCount())
                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific role setting by ID.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

        /**
         * The packet type of this DCERPC message
         */
        protected int ptype = -1;
        /**
         * The flags for this DCERPC message
         */
        protected int flags = 0;
        /**
         * The total length of this DCERPC message
         */
        protected int length = 0;
        /**
         * The call ID for matching requests and responses
         */
        protected int call_id = 0;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

            SMBUtil.writeInt2(9, buffer, offset); // Structure size
            SMBUtil.writeInt2(80 - 64, buffer, offset + 2); // Buffer offset (relative to header)
            SMBUtil.writeInt4(50, buffer, offset + 4); // Total length of notification data
    
            // Write notification data at buffer offset 80
            int notifyOffset = 80;
            SMBUtil.writeInt4(0, buffer, notifyOffset); // NextEntryOffset (0 = last entry)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

             */
            public int prefmaxlen;
            /**
             * DFS enumeration structure containing results
             */
            public DfsEnumStruct info;
            /**
             * Total number of entries available
             */
            public NdrLong totalentries;
    
            /**
             * Constructs a NetrDfsEnumEx request
             * @param dfs_name the DFS name to enumerate
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * <p>
         * This method fetches character mapping items with pagination support and updates
         * the pager with the current page information including total count and page ranges.
         * </p>
         *
         * @param dictId the dictionary ID to retrieve character mappings from
         * @param charMappingPager the pager object containing pagination parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top