Search Options

Results per page
Sort
Preferred Languages
Advance

Results 751 - 760 of 1,456 for created (0.04 sec)

  1. ImmutableTableTest.java

    assertEquals(ImmutableTable.of('a', 1, "foo"), builder.put('a', 1, "foo").build()); L75: Table<Character, Integer, String> expectedTable = HashBasedTable.create(); L76: expectedTable.put('a', 1, "foo"); L77: expectedTable.put('b', 1, "bar"); L78: expectedTable.put('a', 2, "baz"); L79: Table<Character, Integer, String> otherTable = HashBasedTable.create(); L80: otherTable.put('b', 1, "bar"); L81: otherTable.put('a', 2, "baz"); L82: assertEquals(expectedTable, builder.putAll(otherTable).build());...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      18.5K bytes
  2. ClientAndServer.java

    java.util.Collections; L20:import okhttp3.OkHttpClient; L21:import okhttp3.Protocol; L22:import okhttp3.Request; L23:import okhttp3.Response; L24:import okhttp3.mockwebserver.MockResponse; L25:import okhttp3.mockwebserver.MockWebServer; L26: L27:/** L28: * Create UNIX domain sockets for MockWebServer and OkHttp and connect 'em together. Note that we L29: * cannot do TLS over domain sockets. L30: */ L31:public class ClientAndServer { L32: public void run() throws Exception { L33: File socketFile = new ...
    github.com/square/okhttp/samples/unixdomainsock...
    Mon Dec 24 03:46:30 UTC 2018
      2.1K bytes
  3. littleAdjustmentMap.dfprop

    # Table names for display, e.g. on documents, are forcedly treated as upper case. L84: # L85: #; isTableDispNameUpperCase = false L86: # - - - - - - - - - -/ L87: L88: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L89: # o isTableSqlNameUpperCase: (NotRequired - Default false) L90: # [true] L91: # Table names on SQL executed by condition-bean or behavior L92: # are forcedly treated as upper case. (except outside-SQL) L93: # L94: #; isTableSqlNameUpperCase...
    github.com/codelibs/fess/dbflute_fess/dfprop/li...
    Sat Jul 25 06:04:16 UTC 2015
      8.8K bytes
  4. Callables.java

    true) L33:@ElementTypesAreNonnullByDefault L34:public final class Callables { L35: private Callables() {} L36: L37: /** Creates a {@code Callable} which immediately returns a preset value each time it is called. */ L38: public static <T extends @Nullable Object> Callable<T> returning(@ParametricNullness T value) { L39: return () -> value; L40: } L41: L42: /** L43: * Creates an {@link AsyncCallable} from a {@link Callable}. L44: * L45: * <p>The {@link AsyncCallable} returns the {@link ListenableFuture}...
    github.com/google/guava/android/guava/src/com/g...
    Fri May 12 18:32:03 UTC 2023
      4.4K bytes
  5. TypeParameter.java

    TypeParameter<T>() {}, elementType); L30: * } L31: * }</pre> L32: * L33: * @author Ben Yu L34: * @since 12.0 L35: */ L36:@ElementTypesAreNonnullByDefault L37:/* L38: * A nullable bound would let users create a TypeParameter instance for a parameter with a nullable L39: * bound. However, it would also let them create `new TypeParameter<@Nullable T>() {}`, which L40: * wouldn't behave as users might expect. Additionally, it's not clear how the TypeToken API could L41: * support even a "normal" `TypeParameter<T>`...
    github.com/google/guava/android/guava/src/com/g...
    Wed Jan 05 17:43:40 UTC 2022
      2.5K bytes
  6. WebSocketWriterTest.kt

    "2c82bcd4d554bf0b54023c2" L135: ).decodeHex() L136: serverWriter.writeMessageFrame(OPCODE_BINARY, payload) L137: assertData("8232") L138: assertData(payload) L139: } L140: L141: @Test fun serverMessageLengthShort() { L142: // Create a payload which will overflow the normal payload byte size. L143: val payload = Buffer() L144: while (payload.completeSegmentByteCount() <= PAYLOAD_BYTE_MAX) { L145: payload.writeByte('0'.code) L146: } L147: serverWriter.writeMes...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Mon Jan 08 01:13:22 UTC 2024
      9.3K bytes
  7. DataConfigPager.java

    currentPageNumber; L44: L45: public String id; L46: L47: public String name; L48: L49: public String handlerName; L50: L51: public String boost; L52: L53: public String available; L54: L55: public String sortOrder; L56: L57: public String createdBy; L58: L59: public String createdTime; L60: L61: public String versionNo; L62: L63: public String description; L64: L65: public void clear() { L66: allRecordCount = 0; L67: allPageCount = 0; L68: existPrePage = false;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.7K bytes
  8. RelatedContentPager.java

    private List<Integer> pageNumberList; L38: L39: private int pageSize; L40: L41: private int currentPageNumber; L42: L43: public String id; L44: L45: public String term; L46: L47: public String content; L48: L49: public String createdBy; L50: L51: public String createdTime; L52: L53: public String versionNo; L54: L55: public void clear() { L56: allRecordCount = 0; L57: allPageCount = 0; L58: existPrePage = false; L59: existNextPage = false; L60:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.4K bytes
  9. RelatedQueryPager.java

    private List<Integer> pageNumberList; L38: L39: private int pageSize; L40: L41: private int currentPageNumber; L42: L43: public String id; L44: L45: public String term; L46: L47: public String queries; L48: L49: public String createdBy; L50: L51: public String createdTime; L52: L53: public String versionNo; L54: L55: public void clear() { L56: allRecordCount = 0; L57: allPageCount = 0; L58: existPrePage = false; L59: existNextPage = false; L60:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.4K bytes
  10. RoleTypePager.java

    pageNumberList; L40: L41: private int pageSize; L42: L43: private int currentPageNumber; L44: L45: public String id; L46: L47: public String name; L48: L49: public String value; L50: L51: public String sortOrder; L52: L53: public String createdBy; L54: L55: public String createdTime; L56: L57: public String versionNo; L58: L59: public void clear() { L60: allRecordCount = 0; L61: allPageCount = 0; L62: existPrePage = false; L63: existNextPage = false; L64:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.5K bytes
Back to top