Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for fname1 (0.07 sec)

  1. statement_test.go

    1. for k, v := range map[string][]string{
    2. "table.name": {"table", "name"},
    3. "`table`.`name`": {"table", "name"},
    4. "'table'.'name'": {"table", "name"},
    5. "'table'.name": {"table", "name"},
    6. "table1.name_23": {"table1", "name_23"},
    7. "`table_1`.`name23`": {"table_1", "name23"},
    8. "'table23'.'name_1'": {"table23", "name_1"},
    9. "'table23'.name1": {"table23", "name1"},
    10. "'name1'": {"", "name1"},
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Dec 23 13:19:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

    1. writeMedium(frame, (headerBlock.size / 2).toInt() + paddingLength + 1)
    2. frame.writeByte(Http2.TYPE_HEADERS)
    3. frame.writeByte(FLAG_PADDED)
    4. frame.writeInt(expectedStreamId and 0x7fffffff)
    5. frame.writeByte(paddingLength)
    6. frame.write(headerBlock, headerBlock.size / 2)
    7. frame.write(padding)
    8.  
    9. // Write the continuation frame, specifying no more frames are expected.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NetworkExplorer.java

    1. return f1.isDirectory() ? -1 : 1;
    2. }
    3. f2name = f2.getName();
    4. if( f1.isDirectory() ) {
    5. return f1name.compareToIgnoreCase( f2name );
    6. }
    7. i = f1name.lastIndexOf( '.' );
    8. t1 = i == -1 ? "" : f1name.substring( i + 1 );
    9. i = f2name.lastIndexOf( '.' );
    10. t2 = i == -1 ? "" : f2name.substring( i + 1 );
    11.  
    12. i = t1.compareToIgnoreCase( t2 );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  4. docs/contribute/concurrency.md

    1. Blocking APIs may be inefficient because you hold a thread idle while waiting on the network. Threads are expensive because they have both a memory overhead and a context-switching overhead.
    2.  
    3. #### Framed protocols
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

    1. while (buffer.size != 1024L) source.read(buffer, 1024)
    2. stream1.close(ErrorCode.CANCEL, null)
    3. val frame1 = peer.takeFrame()
    4. assertThat(frame1.type).isEqualTo(Http2.TYPE_HEADERS)
    5. val frame2 = peer.takeFrame()
    6. assertThat(frame2.type).isEqualTo(Http2.TYPE_RST_STREAM)
    7. val frame3 = peer.takeFrame()
    8. assertThat(frame3.type).isEqualTo(Http2.TYPE_RST_STREAM)
    9. assertThat(connection.readBytes.acknowledged).isEqualTo(0L)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

    1. reason: String,
    2. )
    3. }
    4.  
    5. /**
    6. * Process the next protocol frame.
    7. *
    8. * * If it is a control frame this will result in a single call to [FrameCallback].
    9. * * If it is a message frame this will result in a single call to [FrameCallback.onReadMessage].
    10. * If the message spans multiple frames, each interleaved control frame will result in a
    11. * corresponding call to [FrameCallback].
    12. */
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NetworkExplorer.java

    1. return f1.isDirectory() ? -1 : 1;
    2. }
    3. f2name = f2.getName();
    4. if ( f1.isDirectory() ) {
    5. return f1name.compareToIgnoreCase(f2name);
    6. }
    7. i = f1name.lastIndexOf('.');
    8. t1 = i == -1 ? "" : f1name.substring(i + 1);
    9. i = f2name.lastIndexOf('.');
    10. t2 = i == -1 ? "" : f2name.substring(i + 1);
    11.  
    12. i = t1.compareToIgnoreCase(t2);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

    1. ): Boolean {
    2. // Don't send new frames after we've failed or enqueued a close frame.
    3. if (failed || enqueuedClose) return false
    4.  
    5. // If this frame overflows the buffer, reject it and close the web socket.
    6. if (queueSize + data.size > MAX_QUEUE_SIZE) {
    7. close(CLOSE_CLIENT_GOING_AWAY, null)
    8. return false
    9. }
    10.  
    11. // Enqueue the message frame.
    12. queueSize += data.size.toLong()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

    1. }
    2.  
    3. /** Maximum length of an outbound data frame. */
    4. fun maxOutboundDataLength(): Int = writer.maxDataLength()
    5.  
    6. /** Count of frames sent or received. */
    7. fun frameCount(): Int = frameCount
    8.  
    9. fun sendFrame(): Http2Writer {
    10. outFrames.add(OutFrame(frameCount++, bytesOut.size, false))
    11. return writer
    12. }
    13.  
    14. /**
    15. * Shortens the last frame from its original length to `length`. This will cause the peer to
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
Back to top