Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,339 for sata (0.06 sec)

  1. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

        }
    
        /**
         * Extracts the underlying data map from a parameter map.
         * If the provided map is a ParamMap instance, returns its parent map.
         * Otherwise, returns the map as-is.
         *
         * @param params the parameter map to extract data from
         * @return the underlying data map
         */
        protected static Map<String, Object> getDataMap(final Map<String, Object> params) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

        /**
         * Parse network interface info from encoded bytes
         *
         * @param data encoded data
         * @param offset offset in data
         * @return parsed NetworkInterfaceInfo
         */
        public static NetworkInterfaceInfo decode(byte[] data, int offset) {
            // Ensure we have enough data for the full structure
            if (data.length < offset + Smb2ChannelCapabilities.NETWORK_INTERFACE_INFO_SIZE) {
                return null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

        }
    
        public void test_get_notFound() {
            // Load data first
            protwordsFile.reload(null);
    
            // Test getting non-existing item
            OptionalEntity<ProtwordsItem> item = protwordsFile.get(999);
            assertFalse(item.isPresent());
        }
    
        public void test_get_withUnloadedData() {
            // Test getting item when data is not loaded yet
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoRequest.java

     */
    package jcifs.internal.smb2.ioctl;
    
    /**
     * Request data for FSCTL_QUERY_NETWORK_INTERFACE_INFO
     *
     * This IOCTL has no input data - the request is empty
     */
    public class QueryNetworkInterfaceInfoRequest {
    
        /**
         * Create query network interface info request
         */
        public QueryNetworkInterfaceInfoRequest() {
            // No input data required for this IOCTL
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/curl/io/ContentCache.java

         * A byte array that holds the cached content data.
         */
        private final byte[] data;
    
        /**
         * The file that is used to cache the content.
         */
        private final File file;
    
        /**
         * Constructs a ContentCache with the given byte array data.
         *
         * @param data the byte array containing the content
         */
        public ContentCache(final byte[] data) {
            this.data = data;
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/sanitize.js

    e.each||(e=a(e));var g=function(){var b=a(this),c=b.val();a.split(b.attr("data-sanitize"),function(a){if(!(a in d))throw new Error('Use of unknown sanitize command "'+a+'"');c=d[a](c,b,f)}),b.val(c).trigger("keyup.validation")};e.each(function(){var b=a(this);f.sanitizeAll&&b.find("input,textarea").not(c).each(function(){var b=a(this),c=b.attr("data-sanitize")||"";b.attr("data-sanitize",f.sanitizeAll+" "+c)}),b.find("[data-sanitize]").unbind("blur.sanitation",g).bind("blur.sanitation",g),a(funct...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Handles search pagination and data preparation for rendering.
         *
         * @param data render data to populate with search results
         * @param form search form containing current search state
         */
        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
    - 22.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/index.js

        if (!$(e.target).closest("#searchOptions, #searchOptionsButton").length) {
          $("#searchOptions").removeClass("active");
        }
      });
    
      $("[data-toggle='control-options']").click(function(e) {
        e.preventDefault();
        var target = $(this).attr("data-target") || $(this).attr("href");
        if (target) {
          $(target).toggleClass("active");
        }
      });
    
      $("#searchOptionsClearButton").on("click", function(e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmContext.java

            final byte[] seqBytes = new byte[4];
            SMBUtil.writeInt4(seqNum, seqBytes, 0);
    
            final MessageDigest mac = Crypto.getHMACT64(sk);
            mac.update(seqBytes); // sequence
            mac.update(data); // data
            final byte[] dgst = mac.digest();
            byte[] trunc = new byte[8];
            System.arraycopy(dgst, 0, trunc, 0, 8);
    
            if (log.isDebugEnabled()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  10. docs/en/mkdocs.yml

      macros:
        include_yaml:
        - external_links: ../en/data/external_links.yml
        - github_sponsors: ../en/data/github_sponsors.yml
        - people: ../en/data/people.yml
        - contributors: ../en/data/contributors.yml
        - translators: ../en/data/translators.yml
        - translation_reviewers: ../en/data/translation_reviewers.yml
        - skip_users: ../en/data/skip_users.yml
        - members: ../en/data/members.yml
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top