Search Options

Results per page
Sort
Preferred Languages
Advance

Results 581 - 590 of 681 for delete (0.04 sec)

  1. documentMap.dfprop

    - - - - -/ L135: L136: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L137: # o isCheckColumnDefOrderDiff: (NotRequired - Default false) L138: # Does it check differences of column-def order? L139: # (except added or deleted columns) L140: # L141: #; isCheckColumnDefOrderDiff = false L142: # - - - - - - - - - -/ L143: L144: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L145: # o isCheckDbCommentDiff: (NotRequired - Default false) L146:...
    github.com/codelibs/fess/dbflute_fess/dfprop/do...
    Sat Oct 31 23:35:14 UTC 2015
      9.4K bytes
  2. BiMapPutTester.java

    @CollectionSize.Require(ZERO) L50: public void testPutPresentKeyDifferentValue() { L51: getMap().put(k0(), v0()); L52: getMap().put(k0(), v1()); L53: // verify that the bimap is changed, and that the old inverse mapping L54: // from v1 -> v0 is deleted L55: expectContents(mapEntry(k0(), v1())); L56: } L57: L58: @MapFeature.Require(SUPPORTS_PUT) L59: @CollectionSize.Require(ZERO) L60: public void putDistinctKeysDistinctValues() { L61: getMap().put(k0(), v0()); L62: getMap().put(k1(),...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      4.9K bytes
  3. build.gradle.kts

    unfortunate, because actually it would be safe to declare L72: the task as up-to-date, because these two files, which are based on L73: the generated index.xml, are outputs, not inputs. We can be sure of L74: this because they are deleted in the @BeforeEach method of the L75: OsgiTest test class. L76: L77: - To enable the benefit of incremental builds, we can ask Gradle L78: to ignore these two files when considering whether the classpath L79: has changed. That...
    github.com/square/okhttp/okhttp/build.gradle.kts
    Thu Jan 04 05:32:07 UTC 2024
      5.6K bytes
  4. LittleEndianDataOutputStream.java

    L40:public final class LittleEndianDataOutputStream extends FilterOutputStream implements DataOutput { L41: L42: /** L43: * Creates a {@code LittleEndianDataOutputStream} that wraps the given stream. L44: * L45: * @param out the stream to delegate to L46: */ L47: public LittleEndianDataOutputStream(OutputStream out) { L48: super(new DataOutputStream(Preconditions.checkNotNull(out))); L49: } L50: L51: @Override L52: public void write(byte[] b, int off, int len) throws IOException {...
    github.com/google/guava/guava/src/com/google/co...
    Sat Oct 26 12:34:49 UTC 2024
      5.2K bytes
  5. ExecutionSequencerTest.java

    + 100); L302: } L303: L304: private static Function<Integer, Integer> add(final int delta) { L305: return new Function<Integer, Integer>() { L306: @Override L307: public Integer apply(Integer input) { L308: return input + delta; L309: } L310: }; L311: } L312: L313: private static AsyncCallable<Integer> asyncAdd( L314: final ListenableFuture<Integer> future, final int delta, final Executor executor) { L315: return new AsyncCallable<Integer>() { L316: @Override...
    github.com/google/guava/android/guava-tests/tes...
    Fri Oct 18 22:10:29 UTC 2024
      16.7K bytes
  6. DerivedGenerator.java

    L17:package com.google.common.collect.testing; L18: L19:import com.google.common.annotations.GwtCompatible; L20: L21:/** L22: * A generator that relies on a preexisting generator for most of its work. For example, a derived L23: * iterator generator may delegate the work of creating the underlying collection to an inner L24: * collection generator. L25: * L26: * <p>{@code GwtTestSuiteGenerator} expects every {@code DerivedIterator} implementation to provide L27: * a one-arg constructor accepting its inner...
    github.com/google/guava/android/guava-testlib/s...
    Mon Oct 10 19:45:10 UTC 2022
      1.3K bytes
  7. DerivedGenerator.java

    L17:package com.google.common.collect.testing; L18: L19:import com.google.common.annotations.GwtCompatible; L20: L21:/** L22: * A generator that relies on a preexisting generator for most of its work. For example, a derived L23: * iterator generator may delegate the work of creating the underlying collection to an inner L24: * collection generator. L25: * L26: * <p>{@code GwtTestSuiteGenerator} expects every {@code DerivedIterator} implementation to provide L27: * a one-arg constructor accepting its inner...
    github.com/google/guava/guava-testlib/src/com/g...
    Mon Oct 10 19:45:10 UTC 2022
      1.3K bytes
  8. SetsFilterSortedSetTest.java

    er> contents) { L28: final TreeSet<Integer> result = Sets.newTreeSet(contents); L29: // we have to make the result not Navigable L30: return new ForwardingSortedSet<Integer>() { L31: @Override L32: protected SortedSet<Integer> delegate() { L33: return result; L34: } L35: }; L36: } L37: L38: @Override L39: SortedSet<Integer> filter(SortedSet<Integer> elements, Predicate<? super Integer> predicate) { L40: return Sets.filter(elements, predicate); L41: } L42:}...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Mar 16 21:55:55 UTC 2022
      1.4K bytes
  9. BaseComparable.java

    L28:@GwtCompatible L29:public class BaseComparable implements Comparable<BaseComparable>, Serializable { L30: private final String s; L31: L32: public BaseComparable(String s) { L33: this.s = s; L34: } L35: L36: @Override L37: public int hashCode() { // delegate to 's' L38: return s.hashCode(); L39: } L40: L41: @Override L42: public boolean equals(@Nullable Object other) { L43: if (other == null) { L44: return false; L45: } else if (other instanceof BaseComparable) { L46: return s....
    github.com/google/guava/guava-testlib/src/com/g...
    Thu Apr 20 11:19:03 UTC 2023
      1.5K bytes
  10. DuplexTest.kt

    server.useHttps(handshakeCertificates.sslSocketFactory()) L777: } L778: L779: private inner class DelayedRequestBody( L780: private val delegate: RequestBody, L781: delay: Long, L782: timeUnit: TimeUnit, L783: ) : RequestBody() { L784: private val delayMillis = timeUnit.toMillis(delay) L785: L786: override fun contentType() = delegate.contentType() L787: L788: override fun isDuplex() = true L789: L790: override fun writeTo(sink: BufferedSink) { L791: executorService.schedule({...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sat Jan 20 10:30:28 UTC 2024
      23.9K bytes
Back to top