Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for destIP (0.05 sec)

  1. docs/de/docs/benchmarks.md

    Konkret geht es darum, Uvicorn, Starlette und FastAPI miteinander zu vergleichen (neben vielen anderen Tools).
    
    Je einfacher das Problem, welches durch das Tool gelöst wird, desto besser ist die Performanz. Und die meisten Benchmarks testen nicht die zusätzlichen Funktionen, welche das Tool bietet.
    
    Die Hierarchie ist wie folgt:
    
    * **Uvicorn**: ein ASGI-Server
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

         *
         * @param challenge The server challenge.
         * @param dest The destination array in which the user session key will be
         * placed.
         * @param offset The offset in the destination array at which the
         * session key will start.
         */
        void getUserSessionKey(byte[] challenge, byte[] dest, int offset) throws SmbException {
            if (hashesExternal) return;
            try {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * new <tt>SmbResource</tt></i>.
         *
         * @param dest
         *            An <code>SmbResource</code> that represents the new pathname
         * @throws CIFSException
         * @throws NullPointerException
         *             If the <code>dest</code> argument is <code>null</code>
         */
        void renameTo ( SmbResource dest ) throws CIFSException;
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                    if ( !Objects.equals(getServerWithDfs(), dest.getServerWithDfs()) || !Objects.equals(getShare(), dest.getShare()) ) {
                        throw new SmbException("Cannot rename between different trees");
                    }
                }
    
                if ( log.isDebugEnabled() ) {
                    log.debug("renameTo: " + getUncPath() + " -> " + dest.getUncPath());
                }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/request-form-models.md

    /// note | "Nota"
    
    Isso é suportado deste a versão `0.114.0` do FastAPI. 🤓
    
    ///
    
    Você pode utilizar a configuração de modelo do Pydantic para `proibir` qualquer campo `extra`:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="12"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. interfaces.go

    type GetDBConnector interface {
    	GetDBConn() (*sql.DB, error)
    }
    
    // Rows rows interface
    type Rows interface {
    	Columns() ([]string, error)
    	ColumnTypes() ([]*sql.ColumnType, error)
    	Next() bool
    	Scan(dest ...interface{}) error
    	Err() error
    	Close() error
    }
    
    type ErrorTranslator interface {
    	Translate(err error) error
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Aug 19 13:33:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/query-params-str-validations.md

    Quando você não necessita de validações ou de metadados adicionais, podemos fazer com que o parâmetro de consulta `q` seja obrigatório por não declarar um valor padrão, dessa forma:
    
    ```Python
    q: str
    ```
    
    em vez desta:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    Mas agora nós o estamos declarando como `Query`, conforme abaixo:
    
    ```Python
    q: Union[str, None] = Query(default=None, min_length=3)
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         */
        @Override
        public void getUserSessionKey ( CIFSContext tc, byte[] chlng, byte[] dest, int offset ) throws SmbException {
            if ( this.hashesExternal ) {
                return;
            }
            super.getUserSessionKey(tc, chlng, dest, offset);
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/project/inheritance/ModelInheritanceAssembler.java

        void assembleModelInheritance(Model child, Model parent);
    
        void assembleBuildInheritance(Build childBuild, Build parentBuild, boolean handleAsInheritance);
    
        void copyModel(Model dest, Model source);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/project/inheritance/DefaultModelInheritanceAssembler.java

        public void assembleBuildInheritance(Build childBuild, Build parentBuild, boolean handleAsInheritance) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void copyModel(Model dest, Model source) {
            throw new UnsupportedOperationException();
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top