Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 1,434 for created (0.04 sec)

  1. SslLabsClient.kt

    private val moshi = Moshi.Builder().build() L30: L31: private val moshiConverterFactory = MoshiConverterFactory.create(moshi) L32: L33: private val retrofit = L34: Retrofit.Builder() L35: .baseUrl(SslLabsApi.BASE_URL) L36: .addConverterFactory(moshiConverterFactory) L37: .callFactory(callFactory) L38: .build() L39: L40: private val sslLabsApi = retrofit.create(SslLabsApi::class.java) L41: L42: suspend fun clients(): List<Client> { L43: return sslLabsApi.clients().map...
    github.com/square/okhttp/samples/tlssurvey/src/...
    Tue Apr 02 01:44:15 UTC 2024
      1.7K bytes
  2. SetMultimapEqualsTester.java

    re(SEVERAL) L36: public void testOrderingDoesntAffectEqualsComparisons() { L37: SetMultimap<K, V> multimap1 = L38: getSubjectGenerator() L39: .create(mapEntry(k0(), v0()), mapEntry(k0(), v1()), mapEntry(k0(), v4())); L40: SetMultimap<K, V> multimap2 = L41: getSubjectGenerator() L42: .create(mapEntry(k0(), v1()), mapEntry(k0(), v0()), mapEntry(k0(), v4())); L43: new EqualsTester().addEqualityGroup(multimap1, multimap2).testEquals(); L44: } L45:}...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      1.8K bytes
  3. _readme.txt

    SchemaXML L6:located to the "schema" directory. L7:This task should be executed after ReplaceSchema task L8:and before other tasks(e.g. Generate, Document task). L9: L10:manage.bat(sh) => 22 (doc): L11:A execution command of Document task L12:which creates documents, for example, SchemaHTML, HistoryHTML L13:to the "output/doc" directory. L14: L15:manage.bat(sh) => 23 (generate): L16:A execution command of Generate task L17:which generates classes corresponding your tables, L18:for example, entities,...
    github.com/codelibs/fess/dbflute_fess/_readme.txt
    Sat Jul 04 22:46:31 UTC 2015
      2.5K bytes
  4. MapMakerInternalMapTest.java

    SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5; L38: L39: private static <K, V> L40: MapMakerInternalMap<K, V, ? extends InternalEntry<K, V, ?>, ? extends Segment<K, V, ?, ?>> L41: makeMap(MapMaker maker) { L42: return MapMakerInternalMap.create(maker); L43: } L44: L45: private static MapMaker createMapMaker() { L46: MapMaker maker = new MapMaker(); L47: maker.useCustomMap = true; L48: return maker; L49: } L50: L51: // constructor tests L52: L53: public void testDefaults() {...
    github.com/google/guava/android/guava-tests/tes...
    Tue Feb 20 17:00:05 UTC 2024
      35.1K bytes
  5. MapMakerInternalMapTest.java

    SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5; L38: L39: private static <K, V> L40: MapMakerInternalMap<K, V, ? extends InternalEntry<K, V, ?>, ? extends Segment<K, V, ?, ?>> L41: makeMap(MapMaker maker) { L42: return MapMakerInternalMap.create(maker); L43: } L44: L45: private static MapMaker createMapMaker() { L46: MapMaker maker = new MapMaker(); L47: maker.useCustomMap = true; L48: return maker; L49: } L50: L51: // constructor tests L52: L53: public void testDefaults() {...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Feb 20 17:00:05 UTC 2024
      35.1K bytes
  6. TestsForListsInJavaUtil.java

    { L120: return emptySet(); L121: } L122: L123: public Test testsForEmptyList() { L124: return ListTestSuiteBuilder.using( L125: new TestStringListGenerator() { L126: @Override L127: public List<String> create(String[] elements) { L128: return emptyList(); L129: } L130: }) L131: .named("emptyList") L132: .withFeatures(CollectionFeature.SERIALIZABLE, CollectionSize.ZERO) L133: .suppressing(suppressForEmptyList())...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      11.7K bytes
  7. SettableFutureTest.java

    throws Exception { L109: SettableFuture<String> future = SettableFuture.create(); L110: SettableFuture<String> nested = SettableFuture.create(); L111: assertTrue(future.setFuture(nested)); L112: // Later attempts to set the future should return false. L113: assertFalse(future.set("x")); L114: assertFalse(future.setException(new Exception("bar"))); L115: assertFalse(future.setFuture(SettableFuture.<String>create())); L116: // Check that the future has been set properly. L117: ...
    github.com/google/guava/android/guava-tests/tes...
    Fri Oct 18 22:10:29 UTC 2024
      7.3K bytes
  8. ImmutableMultisetTest.java

    testCopyOf_multiset_empty() { L247: Multiset<String> c = HashMultiset.create(); L248: Multiset<String> multiset = ImmutableMultiset.copyOf(c); L249: assertTrue(multiset.isEmpty()); L250: } L251: L252: public void testCopyOf_multiset_oneElement() { L253: Multiset<String> c = HashMultiset.create(asList("a")); L254: Multiset<String> multiset = ImmutableMultiset.copyOf(c); L255: assertEquals(HashMultiset.create(asList("a")), multiset); L256: } L257: L258: public void testCopyOf_multiset_general()...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      20.8K bytes
  9. BsFavoriteLog.java

    ======== L119: public LocalDateTime getCreatedAt() { L120: checkSpecifiedProperty("createdAt"); L121: return createdAt; L122: } L123: L124: public void setCreatedAt(LocalDateTime value) { L125: registerModifiedProperty("createdAt"); L126: this.createdAt = value; L127: } L128: L129: public String getDocId() { L130: checkSpecifiedProperty("docId"); L131: return convertEmptyToNull(docId);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.6K bytes
  10. TestsForListsInJavaUtil.java

    { L124: return emptySet(); L125: } L126: L127: public Test testsForEmptyList() { L128: return ListTestSuiteBuilder.using( L129: new TestStringListGenerator() { L130: @Override L131: public List<String> create(String[] elements) { L132: return emptyList(); L133: } L134: }) L135: .named("emptyList") L136: .withFeatures(CollectionFeature.SERIALIZABLE, CollectionSize.ZERO) L137: .suppressing(suppressForEmptyList())...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      12.1K bytes
Back to top