Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 64 for getFree (0.13 seconds)

  1. src/main/java/jcifs/smb/SmbFileInputStream.java

            if (this.tmp == null) {
                throw new IOException("Bad file descriptor");
            }
            // ensure file is open
            try (SmbFileHandleImpl fd = ensureOpen(); SmbTreeHandleImpl th = fd.getTree()) {
    
                if (log.isTraceEnabled()) {
                    log.trace("read: fid=" + fd + ",off=" + off + ",len=" + len);
                }
    
                final int type = this.file.getType();
                int r, n;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            /**
             * @return Object
             */
            public Object isDdd() {
                return null;
            }
    
            /**
             * @return String
             */
            public String getEee() {
                return null;
            }
    
            /**
             * @param eee
             */
            public void setEee(final String eee) {
            }
    
            /**
             * @return int
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Fri Jun 20 13:40:57 GMT 2025
    - 11K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/body.md

    Ceci étant découragé, la documentation interactive générée par Swagger UI ne montrera pas de documentation pour le corps d'une requête `GET`, et les proxys intermédiaires risquent de ne pas le supporter.
    
    ///
    
    ## Importer le `BaseModel` de Pydantic { #import-pydantics-basemodel }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  4. docs/smb3-features/04-directory-leasing-design.md

                        request.setWatchTree(false);  // Non-recursive for now
                        
                        Smb2ChangeNotifyResponse response = (Smb2ChangeNotifyResponse) 
                            handle.directoryFile.getTree().send(request);
                        
                        if (response.isSuccess()) {
                            processChangeNotification(handle, response);
                        }
                        
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 36.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

            /**
             * @return Object
             */
            public Object isDdd() {
                return null;
            }
    
            /**
             * @return String
             */
            public String getEee() {
                return eee;
            }
    
            /**
             * @param eee
             */
            public void setEee(final String eee) {
                this.eee = eee;
            }
    
            /**
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Fri Jun 20 13:40:57 GMT 2025
    - 13.9K bytes
    - Click Count (0)
  6. docs/fr/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial003_py310.py hl[5:7,13:18,24] *}
    
    Ici, si vous appelez `/unicorns/yolo`, le chemin d'accès va `raise` une `UnicornException`.
    
    Mais elle sera gérée par `unicorn_exception_handler`.
    
    Ainsi, vous recevrez une erreur propre, avec un code d'état HTTP `418` et un contenu JSON :
    
    ```JSON
    {"message": "Oops! yolo did something. There goes a rainbow..."}
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
  7. ci/official/utilities/extract_resultstore_links.py

    The links and the invocations' status can then be printed out, or output in the
    form of JUnit-based XML.
    """
    import argparse
    import datetime
    import os
    import re
    from typing import Dict, Union
    import xml.etree.ElementTree as ElemTree
    
    
    ResultDictType = Dict[str, Dict[str, Union[str, int]]]
    
    RESULT_STORE_LINK_RE = re.compile(
        r'^INFO: Streaming build results to: (https://[\w./\-]+)')
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Nov 08 17:50:27 GMT 2023
    - 10.9K bytes
    - Click Count (0)
  8. docs/tr/docs/alternatives.md

    API’lar için açık standart olan OpenAPI’ı desteklemek.
    
    ///
    
    ### [Flask-apispec](https://flask-apispec.readthedocs.io/en/latest/) { #flask-apispec }
    
    Webargs, Marshmallow ve APISpec’i bir araya getiren bir Flask eklentisidir.
    
    Webargs ve Marshmallow’dan aldığı bilgiyi kullanarak, APISpec ile otomatik OpenAPI şemaları üretir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 24K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/first-steps.md

    {"message": "Hello World"}
    ```
    
    ### Documentation interactive de l’API { #interactive-api-docs }
    
    Allez maintenant sur [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    Vous verrez la documentation interactive de l’API générée automatiquement (fournie par [Swagger UI](https://github.com/swagger-api/swagger-ui)) :
    
    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  10. docs/fr/docs/advanced/advanced-dependencies.md

    Cela a été modifié dans la version 0.110.0 pour corriger une consommation de mémoire non gérée due aux exceptions transmises sans gestionnaire (erreurs internes du serveur), et pour rendre le comportement cohérent avec celui du code Python classique.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.6K bytes
    - Click Count (0)
Back to Top