Search Options

Results per page
Sort
Preferred Languages
Advance

Results 411 - 420 of 615 for sata (0.04 sec)

  1. documentMap.dfprop

    the property 'recordLimit' is set. L162: # Elements of this map are as below: L163: # o recordLimit: The limit of records to output. Minus means no limit. (NotRequired - Default '') L164: # o isReplaceSchemaDirectUse: Does it output the data to playsql directly? (NotRequired - Default false) L165: # o isOverrideExistingDataFile: Does it output to existing files? (NotRequired - Default false) L166: # o isSynchronizeOriginDate: Does it synchronize origin date for date adjustment?...
    github.com/codelibs/fess/dbflute_fess/dfprop/do...
    Sat Oct 31 23:35:14 UTC 2015
      9.4K bytes
  2. admin_badword_upload.jsp

    </ol> L33: </div> L34: </div> L35: </div> L36: </div> L37: <section class="content"> L38: <la:form action="/admin/badword/upload/" enctype="multipart/form-data"> L39: <div class="row"> L40: <div class="col-md-12"> L41: <div class="card card-outline card-success"> L42: <div class="card-header"> L43: <h3 class="card-title">...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      5.4K bytes
  3. ImmutableCollection.java

    example, {@code copyOf(copyOf(anArrayList))} should copy the data only L131: * once. This reduces the expense of habitually making defensive copies at API boundaries. L132: * However, the precise conditions for skipping the copy operation are undefined. L133: * <li><b>Warning:</b> a view collection such as {@link ImmutableMap#keySet} or {@link L134: * ImmutableList#subList} may retain a reference to the entire data set, preventing it from L135: * being garbage collected....
    github.com/google/guava/guava/src/com/google/co...
    Mon Aug 12 16:59:15 UTC 2024
      18.8K bytes
  4. DerAdapter.kt

    this adapter can read [header] in a choice. */ L26: fun matches(header: DerHeader): Boolean L27: L28: /** L29: * Returns a value from this adapter. L30: * L31: * This must always return a value, though it doesn't necessarily need to consume data from L32: * [reader]. For example, if the reader's peeked tag isn't readable by this adapter, it may return L33: * a default value. L34: * L35: * If this does read a value, it starts with the tag and length, and reads an entire value, L36:...
    github.com/square/okhttp/okhttp-tls/src/main/ko...
    Mon Jan 08 01:13:22 UTC 2024
      4.2K bytes
  5. SortedCopyBenchmark.java

    L23:import java.util.ArrayList; L24:import java.util.Collections; L25:import java.util.LinkedHashSet; L26:import java.util.List; L27:import java.util.Random; L28:import java.util.Set; L29:import java.util.TreeSet; L30: L31:/** L32: * Provides supporting data for performance notes in the documentation of {@link L33: * Ordering#sortedCopy} and {@link Ordering#immutableSortedCopy}, as well as for automated code L34: * suggestions. L35: * L36: */ L37:public class SortedCopyBenchmark { L38: @Param({"1", "10",...
    github.com/google/guava/guava-tests/benchmark/c...
    Wed Oct 30 16:15:19 UTC 2024
      3.5K bytes
  6. ApiAdminBadwordAction.java

    getCsvEncoding()))) { L160: badWordService.importCsv(reader); L161: suggestHelper.storeAllBadWords(false); L162: } catch (final Exception e) { L163: throw new FessSystemException("Failed to import data.", e); L164: } L165: }); L166: return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); L167: } L168: L169: // GET /api/admin/badword/download L170: @Execute L171: public StreamResponse get$download(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.4K bytes
  7. admin_dict_stemmeroverride_upload.jsp

    </ol> L36: </div> L37: </div> L38: </div> L39: </div> L40: <section class="content"> L41: <la:form action="/admin/dict/stemmeroverride/upload" enctype="multipart/form-data"> L42: <la:hidden property="dictId"/> L43: <div class="row"> L44: <div class="col-md-12"> L45: <div class="card card-outline card-success"> L46: <div...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Feb 13 07:47:04 UTC 2020
      6.3K bytes
  8. CollectionBenchmarkSampleData.java

    com.google.common.base.Preconditions.checkNotNull; L20:import static java.util.Collections.shuffle; L21: L22:import java.util.List; L23:import java.util.Set; L24:import org.checkerframework.checker.nullness.qual.Nullable; L25: L26:/** L27: * Package up sample data for common collections benchmarking. L28: * L29: * @author Nicholaus Shupe L30: */ L31:class CollectionBenchmarkSampleData { L32: private final boolean isUserTypeFast; L33: private final SpecialRandom random; L34: private final double hitRate; L35:...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      4.1K bytes
  9. CacheStrategy.kt

    out whether to use the network, the cache, or L40: * both. L41: * L42: * Selecting a cache strategy may add conditions to the request (like the "If-Modified-Since" header L43: * for conditional GETs) or warnings to the cached response (if the cached data is potentially L44: * stale). L45: */ L46:class CacheStrategy internal constructor( L47: /** The request to send on the network, or null if this call doesn't use the network. */ L48: val networkRequest: Request?, L49: /** The cached response to...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Mon Apr 15 13:24:48 UTC 2024
      12K bytes
  10. SequentialExecutor.java

    L117: // it. To preserve FIFO order and failure atomicity of rejected execution when the same L118: // Runnable is executed more than once, allocate a wrapper that we know is safe to remove by L119: // object identity. L120: // A data structure that returned a removal handle from add() would allow eliminating this L121: // allocation. L122: submittedTask = L123: new Runnable() { L124: @Override L125: public void run() { L126: ...
    github.com/google/guava/android/guava/src/com/g...
    Thu Feb 01 21:46:34 UTC 2024
      10.6K bytes
Back to top