Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for prototype (0.25 sec)

  1. src/main/resources/fess_job.xml

    	</component>
    
    	<!-- Jobs -->
    	<component name="crawlJob" class="org.codelibs.fess.job.CrawlJob" instance="prototype">
    	</component>
    	<component name="suggestJob" class="org.codelibs.fess.job.SuggestJob" instance="prototype">
    	</component>
    	<component name="aggregateLogJob" class="org.codelibs.fess.job.AggregateLogJob" instance="prototype">
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 19 22:14:38 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/MacHashFunction.java

      private final Mac prototype;
    
      @SuppressWarnings("Immutable") // keys are immutable, but not provably so
      private final Key key;
    
      private final String toString;
      private final int bits;
      private final boolean supportsClone;
    
      MacHashFunction(String algorithmName, Key key, String toString) {
        this.prototype = getMac(algorithmName, key);
        this.key = checkNotNull(key);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 15 22:31:55 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/MessageDigestHashFunction.java

      }
    
      MessageDigestHashFunction(String algorithmName, int bytes, String toString) {
        this.toString = checkNotNull(toString);
        this.prototype = getMessageDigest(algorithmName);
        int maxLength = prototype.getDigestLength();
        checkArgument(
            bytes >= 4 && bytes <= maxLength, "bytes (%s) must be >= 4 and < %s", bytes, maxLength);
        this.bytes = bytes;
        this.supportsClone = supportsClone(prototype);
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 25 20:32:46 GMT 2022
    - 5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    			<arg>"10:00"</arg>
    			<arg>"2,3,4,5,6"</arg>
    			<arg>3600000</arg>
    		</postConstruct>
    		 -->
    	</component>
    	<component name="indexUpdater" class="org.codelibs.fess.indexer.IndexUpdater"
    		instance="prototype">
    		<!--
    		<property name="maxDocumentCacheSize">5</property>
    		<property name="unprocessedDocumentSize">100</property>
    		<property name="threadDump">false</property>
    		<postConstruct name="addBoostDocumentRule">
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 09 02:14:47 GMT 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_ds.xml

    <components>
    	<component name="dataStoreFactory" class="org.codelibs.fess.ds.DataStoreFactory">
    	</component>
    	<component name="indexUpdateCallback" class="org.codelibs.fess.ds.callback.IndexUpdateCallbackImpl" instance="prototype">
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 31 09:46:09 GMT 2018
    - 404 bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/env/suggest/resources/app.xml

    <components>
    	<include path="convention.xml" />
    	<include path="lastaflute_core.xml"/>
    	<include path="fess.xml" />
    
    	<component name="fessSuggest" class="org.codelibs.fess.exec.SuggestCreator"
    			   instance="prototype">
    	</component>
    	<component name="suggestHelper" class="org.codelibs.fess.helper.SuggestHelper">
    	</component>
    
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 14 21:35:39 GMT 2020
    - 489 bytes
    - Viewed (0)
  7. src/main/resources/crawler/interval.xml

    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="intervalController"
    		class="org.codelibs.fess.crawler.interval.FessIntervalController"
    		instance="prototype">
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Oct 11 06:51:14 GMT 2015
    - 381 bytes
    - Viewed (0)
  8. src/main/resources/app.xml

    	</component>
    	<component name="themeHelper" class="org.codelibs.fess.helper.ThemeHelper">
    	</component>
    	<component name="queryStringBuilder" class="org.codelibs.fess.util.QueryStringBuilder" instance="prototype">
    	</component>
    	<component name="queryParser" class="org.codelibs.fess.query.parser.QueryParser">
    	</component>
    	<component name="facetInfo" class="org.codelibs.fess.entity.FacetInfo">
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Nov 19 02:22:47 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/main/resources/crawler_es+crawlerThread.xml

    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<!-- Crawler Thread -->
    	<component name="crawlerThread" class="org.codelibs.fess.crawler.FessCrawlerThread" instance="prototype" >
    	</component>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jan 28 04:42:09 GMT 2016
    - 342 bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/11-language-change.yml

          label: Performance Costs
          description: "What is the compile time cost? What is the run time cost? "
        validations:
          required: false
    
      - type: textarea
        id: prototype
        attributes:
          label: "Prototype"
          description: "Can you describe a possible implementation?"
        validations:
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top