Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 219 for noImpl (0.04 sec)

  1. src/main/java/jcifs/netbios/NbtAddress.java

    import java.net.UnknownHostException;
    
    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.NetbiosAddress;
    import jcifs.NetbiosName;
    
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
     * name resolution and session services are handled internally by the smb package.
     * 
     * <p>
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/g;x=1/y", simplifyPath("/a/b/c/g;x=1/./y"));
        assertEquals("/a/b/c/y", simplifyPath("/a/b/c/g;x=1/../y"));
      }
    
      /** http://gbiv.com/protocols/uri/rfc/rfc3986.html#relative-normal */
      public void testRfc3986Normal() {
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/./g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g/"));
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

        assertEquals("/a/b/c/g;x=1/y", simplifyPath("/a/b/c/g;x=1/./y"));
        assertEquals("/a/b/c/y", simplifyPath("/a/b/c/g;x=1/../y"));
      }
    
      /** http://gbiv.com/protocols/uri/rfc/rfc3986.html#relative-normal */
      public void testRfc3986Normal() {
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/./g"));
        assertEquals("/a/b/c/g", simplifyPath("/a/b/c/g/"));
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/first-steps.md

    Ela será chamada pelo **FastAPI** sempre que receber uma requisição para a URL "`/ `" usando uma operação `GET`.
    
    Neste caso, é uma função `assíncrona`.
    
    ---
    
    Você também pode defini-la como uma função normal em vez de `async def`:
    
    ```Python hl_lines="7"
    {!../../docs_src/first_steps/tutorial003.py!}
    ```
    
    /// note | "Nota"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SIDCacheImpl.java

         * This method will attempt
         * to resolve SIDs using a cache and cache the results of any SIDs that
         * required resolving with the authority. SID cache entries are currently not
         * expired because under normal circumstances SID information never changes.
         *
         * @param authorityServerName
         *            The hostname of the server that should be queried. For maximum efficiency this should be the hostname
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

    @Singleton
    public class DefaultClassRealmManager implements ClassRealmManager {
        public static final String API_REALMID = "maven.api";
    
        public static final String API_V4_REALMID = "maven.api.v4";
    
        /**
         * During normal command line build, ClassWorld is loaded by jvm system classloader, which only includes
         * plexus-classworlds jar and possibly javaagent classes, see https://issues.apache.org/jira/browse/MNG-4747.
         * <p>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/first-steps.md

    Bu fonksiyon bir `GET` işlemi kullanılarak "`/`" bağlantısına bir istek geldiğinde **FastAPI** tarafından çağrılır.
    
    Bu durumda bu fonksiyon bir `async` fonksiyondur.
    
    ---
    
    Bu fonksiyonu `async def` yerine normal bir fonksiyon olarak da tanımlayabilirsiniz.
    
    ```Python hl_lines="7"
    {!../../docs_src/first_steps/tutorial003.py!}
    ```
    
    /// note | "Not"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/body-nested-models.md

    * Editor support (completion, etc.), even for nested models
    * Data conversion
    * Data validation
    * Automatic documentation
    
    ## Special types and validation
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                    bufferIndex += ( (AndXServerMessageBlock) this.andx ).readAndXWireFormat(buffer, bufferIndex);
                }
                else {
    
                    /*
                     * Just a plain smb. Read it as normal.
                     */
    
                    buffer[ bufferIndex++ ] = (byte) ( this.andx.wordCount & 0xFF );
    
                    if ( this.andx.wordCount != 0 ) {
                        /*
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/handling-errors.md

    ### Import `HTTPException`
    
    ```Python hl_lines="1"
    {!../../docs_src/handling_errors/tutorial001.py!}
    ```
    
    ### Raise an `HTTPException` in your code
    
    `HTTPException` is a normal Python exception with additional data relevant for APIs.
    
    Because it's a Python exception, you don't `return` it, you `raise` it.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top