Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 407 for store1 (0.03 sec)

  1. src/main/java/org/codelibs/core/collection/SLinkedList.java

                array[i++] = e.element;
            }
            for (i = size; i < array.length; ++i) {
                array[i] = null;
            }
            return array;
        }
    
        /**
         * An entry that stores an element.
         */
        public class Entry {
    
            /** The element */
            protected E element;
    
            /** The next entry */
            protected Entry next;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeBasedTable.java

     * Null row keys, columns keys, and values are not supported.
     *
     * <p>Lookups by row key are often faster than lookups by column key, because the data is stored in
     * a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still runs
     * quickly, since the row key is provided. However, {@code column(columnKey).size()} takes longer,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            // Add some info to map
            crawlingInfoHelper.putToInfoMap("url_count", "100");
            crawlingInfoHelper.putToInfoMap("error_count", "5");
    
            // Store with create=true
            crawlingInfoHelper.store(sessionId, true);
    
            // Verify infoMap is cleared
            assertNull(crawlingInfoHelper.infoMap);
        }
    
        public void test_store_existing() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/internal/StartStopExtension.kt

          val server = field.get(null) as? MockWebServer ?: continue
    
          // Put the instance in the store, so JUnit closes it for us in afterAll.
          store.put(field, server)
    
          server.start()
        }
      }
    
      override fun beforeEach(context: ExtensionContext) {
        val testInstance = context.testInstance.get()
        val store = context.getStore(Namespace.create(StartStop::class.java))
    
        val instanceFields =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jun 19 11:44:16 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/io/PropertiesUtilTest.java

            PropertiesUtil.store(outProperties, outputStream, "comments");
            CloseableUtil.close(outputStream);
            final Properties properties = new Properties();
            PropertiesUtil.load(properties, file);
            assertThat(properties.getProperty("a"), is("A"));
        }
    
        /**
         * Test method for
         * {@link org.codelibs.core.io.PropertiesUtil#store(Properties, java.io.Writer, String)}
         * .
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

        this.elements = null;
        incrementModCount();
        return newDelegate;
      }
    
      @VisibleForTesting
      boolean isUsingHashFloodingResistance() {
        return delegateOrNull() != null;
      }
    
      /** Stores the hash table mask as the number of bits needed to represent an index. */
      private void setHashTableMask(int mask) {
        int hashTableBits = Integer.SIZE - Integer.numberOfLeadingZeros(mask);
        metadata =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Adds a query rescorer for post-processing search results.
         * Query rescorers allow modification of search scores after the initial query execution.
         *
         * @param rescorer the query rescorer to add
         */
        public void addQueryRescorer(final QueryRescorer rescorer) {
            queryRescorerList.add(rescorer);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/WebApiUtil.java

        }
    
        /**
         * Validates the current request by checking for stored web API exceptions.
         * Throws any stored WebApiException if found.
         *
         * @throws WebApiException If a web API exception was previously stored
         */
        public static void validate() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store)
    labels.crawling_info_DataCrawlStartTime=Crawl Start Time (Data Store)
    labels.crawling_info_DataCrawlEndTime=Crawl End Time (Data Store)
    labels.crawling_info_DataIndexExecTime=Indexing Execution Time (Data Store)
    labels.crawling_info_DataIndexSize=Index Size (Data Store)
    labels.webauth_configuration=Web Authentication
    labels.webauth_list_hostname=Hostname
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ds/DataStore.java

     */
    public interface DataStore {
    
        /**
         * Store the data.
         * @param config The data configuration.
         * @param callback The callback.
         * @param initParamMap The initial parameters.
         */
        void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap);
    
        /**
         * Stop the data store.
         */
        void stop();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top