Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1411 - 1420 of 1,929 for paras (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top