- Sort Score
- Result 10 results
- Languages All
Results 1411 - 1420 of 1,929 for paras (0.04 sec)
-
src/main/java/jcifs/SmbPipeHandle.java
*/ boolean isOpen (); /** * @return whether the FD was previously open but became invalid */ boolean isStale (); /** * @param type * @return unwrapped instance */ <T extends SmbPipeHandle> T unwrap ( Class<T> type );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponse.java
import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2TreeDisconnectResponse extends ServerMessageBlock2Response { /** * @param config */ public Smb2TreeDisconnectResponse ( Configuration config ) { super(config); } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponse.java
*/ package jcifs.internal.smb1.trans; import jcifs.Configuration; /** * */ public class TransWaitNamedPipeResponse extends SmbComTransactionResponse { /** * * @param config */ public TransWaitNamedPipeResponse ( Configuration config ) { super(config); } @Override protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt
} flowControlListener.receivingConnectionWindowChanged(readBytes) } } /** * Returns a new server-initiated stream. * * @param associatedStreamId the stream that triggered the sender to create this stream. * @param out true to create an output stream that we can use to send data to the remote peer. * Corresponds to `FLAG_FIN`. */ @Throws(IOException::class) fun pushStream(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 32.6K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/EdgesConnecting.java
* * <p>The {@link #nodeToOutEdge} map means this class only works on networks without parallel edges. * See {@link MultiEdgesConnecting} for a class that works with parallel edges. * * @author James Sexton * @param <E> Edge parameter type */ @ElementTypesAreNonnullByDefault final class EdgesConnecting<E> extends AbstractSet<E> { private final Map<?, E> nodeToOutEdge; private final Object targetNode;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 2.2K bytes - Viewed (0) -
docs/en/docs/project-generation.md
- ๐พ [PostgreSQL](https://www.postgresql.org) as the SQL database. - ๐ [React](https://react.dev) for the frontend. - ๐ Using TypeScript, hooks, [Vite](https://vitejs.dev), and other parts of a modern frontend stack. - ๐จ [Chakra UI](https://chakra-ui.com) for the frontend components. - ๐ค An automatically generated frontend client. - ๐งช [Playwright](https://playwright.dev) for End-to-End testing.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
} for (int i = 0; i < ENCODE_TABLE.length; i++) { DECODE_TABLE[ENCODE_TABLE[i]] = (byte) i; } } /** * Base64ใงใจใณใณใผใใใพใใ * * @param inData * ใจใณใณใผใใใใใผใฟ * @return ใจใณใณใผใใใใใใผใฟ */ public static String encode(final byte[] inData) { if (ArrayUtil.isEmpty(inData)) { return ""; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BinaryConversionUtil.java
/** * byte้ ๅ็จใฎๅคๆใฆใผใใฃใชใใฃใงใใ * * @author higa */ public abstract class BinaryConversionUtil { /** * {@literal byte}ใฎ้ ๅใซๅคๆใใพใใ * * @param o * ๅคๆๅ ใฎใชใใธใงใฏใ * @return {@literal byte}ใฎ้ ๅ */ public static byte[] toBinary(final Object o) { if (o instanceof byte[]) { return (byte[]) o;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java
private static final long serialVersionUID = 9033370905740809950L; private final String path; /** * {@link ResourceNotFoundRuntimeException}ใไฝๆใใพใใ * * @param path * ใชใฝใผในใฎใใน */ public ResourceNotFoundRuntimeException(final String path) { super("ECL0055", asArray(path)); this.path = path; } /** * ใในใ่ฟใใพใใ
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
tests/test_repeated_parameter_alias.py
query: str = Query(..., alias="repeated_alias"), ): return {"path": path, "query": query} client = TestClient(app) def test_get_parameters(): response = client.get("/test_path", params={"repeated_alias": "test_query"}) assert response.status_code == 200, response.text assert response.json() == {"path": "test_path", "query": "test_query"} def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 3.7K bytes - Viewed (0)