Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 738 for sata (0.03 sec)

  1. guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java

        }
        File file = out.getFile();
        assertNull(file);
    
        // Write data to go over the threshold
        if (chunk2 > 0) {
          if (JAVA_IO_TMPDIR.value().equals("/sdcard")) {
            assertThrows(IOException.class, () -> write(out, data, chunk1, chunk2, singleByte));
            return;
          }
          write(out, data, chunk1, chunk2, singleByte);
          file = out.getFile();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

          this.bitCount = LongAddables.create();
        }
    
        // Used by serialization
        LockFreeBitArray(long[] data) {
          checkArgument(data.length > 0, "data length is zero!");
          this.data = new AtomicLongArray(data);
          this.bitCount = LongAddables.create();
          long bitCount = 0;
          for (long value : data) {
            bitCount += Long.bitCount(value);
          }
          this.bitCount.add(bitCount);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/search.js

          type: "get",
          timeoutNumber: 10000,
          url: contextPath + "/api/v1/favorites",
          data: {
            queryId: $queryId.val()
          }
        })
          .done(function(data) {
            var docIds,
                i;
            if (data.record_count > 0) {
              docIds = data.data;
              for (i = 0; i < docIds.length; i++) {
                docIds[i] = "#" + docIds[i].doc_id;
              }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/crypto/CachedCipher.java

        /**
         * Encrypts the given data.
         *
         * @param data
         *            the data to encrypt
         * @return the encrypted data
         */
        public byte[] encrypto(final byte[] data) {
            final Cipher cipher = pollEncryptoCipher();
            byte[] encrypted;
            try {
                encrypted = cipher.doFinal(data);
            } catch (final IllegalBlockSizeException e) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

         * Registers environment variables for rendering.
         *
         * @param data the render data to populate
         */
        protected void registerEnvItems(final RenderData data) {
            RenderDataUtil.register(data, "envItems", getEnvItems());
        }
    
        /**
         * Registers system properties for rendering.
         *
         * @param data the render data to populate
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up search paging data for rendering the search log list.
         *
         * @param data the render data to populate
         * @param form the search form containing current search criteria
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

            userPager.clear();
            return asHtml(path_AdminUser_AdminUserJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Registers pagination and user list data for rendering the user search results.
         *
         * @param data the render data container to populate
         * @param form the search form containing pagination parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing data configuration CRUD operations.
     * This service provides functionality to create, read, update, and delete
     * data configurations used by the Fess crawler system.
     *
     * <p>Data configurations define how the crawler should access and process
     * various data sources such as databases, CSV files, or other structured data.</p>
     */
    public class DataConfigService extends FessAppService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #  Referring the property 'sequenceDefinitionMap'.
        #
        #; isIncrementSequenceToDataMax = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isSuppressBatchUpdate: (NotRequired - Default false)
        #  Does it suppress batch update at loading data?
        #  When you have a data error, you may get details for the error
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for creating data store configurations.
     * Data configs allow administrators to set up crawling of various data sources
     * including databases, CSV files, and other structured data sources.
     */
    public class CreateForm {
    
        /**
         * Creates a new CreateForm instance.
         */
        public CreateForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
Back to top