Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 242 for definition (0.32 sec)

  1. docs/es/docs/features.md

    Con **FastAPI** obtienes todas las funcionalidades de **Pydantic** (ya que FastAPI está basado en Pydantic para todo el manejo de datos):
    
    * **Sin complicaciones**:
        * Sin micro-lenguaje de definición de esquemas nuevo que aprender.
        * Si conoces los tipos en Python sabes cómo usar Pydantic.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

    import jcifs.smb1.dcerpc.ndr.NdrException;
    import jcifs.smb1.dcerpc.ndr.NdrObject;
    import jcifs.smb1.dcerpc.ndr.NdrSmall;
    
    /**
     * LSA RPC (Local Security Authority Remote Procedure Call) definitions.
     * Provides interface definitions and data structures for LSA RPC operations.
     */
    public class lsarpc {
    
        /**
         * Private constructor to prevent instantiation of utility class.
         */
        private lsarpc() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

            globalParams.clear();
            tagQueue.clear();
        }
    
        /**
         * SAX event handler called when an XML start element is encountered.
         * Processes collection definitions and tracks the element hierarchy.
         *
         * @param uri the namespace URI, or empty string if none
         * @param localName the local name without prefix, or empty string if namespace processing is not performed
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          InternetDomainName domain = InternetDomainName.from(inputName);
    
          /*
           * We would ordinarily use constants for the expected results, but
           * doing it by derivation allows us to reuse the test case definitions
           * used in other tests.
           */
    
          String expectedName = Ascii.toLowerCase(inputName);
          expectedName = expectedName.replaceAll("[\u3002\uFF0E\uFF61]", ".");
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
    LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
    CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
    
       1. DEFINITIONS
    
       "Contribution" means:
    
    a) in the case of the initial Contributor, the initial code and documentation
    distributed under this Agreement, and
    
          b) in the case of each subsequent Contributor:
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Sep 17 05:50:12 UTC 2018
    - 11.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

    import jcifs.dcerpc.ndr.NdrBuffer;
    import jcifs.dcerpc.ndr.NdrException;
    import jcifs.dcerpc.ndr.NdrObject;
    import jcifs.dcerpc.ndr.NdrSmall;
    
    /**
     * LSA RPC (Local Security Authority Remote Procedure Call) interface definitions.
     * This class provides data structures and constants for interacting with the
     * Windows Local Security Authority service via DCE/RPC protocol.
     */
    @SuppressWarnings("all")
    public class lsarpc {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  7. docs/es/docs/python-types.md

    {* ../../docs_src/python_types/tutorial001.py hl[2] *}
    
    ### Edítalo
    
    Es un programa muy simple.
    
    Pero ahora imagina que lo escribieras desde cero.
    
    En algún momento habrías empezado la definición de la función, tenías los parámetros listos...
    
    Pero luego tienes que llamar "ese método que convierte la primera letra a mayúscula".
    
    ¿Era `upper`? ¿Era `uppercase`? `first_uppercase`? `capitalize`?
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 17.6K bytes
    - Viewed (1)
  8. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            if (!(obj instanceof final SmbResourceLocatorImpl o)) {
                return false;
            }
    
            /*
             * If uncertain, pathNamesPossiblyEqual returns true.
             * Comparing canonical paths is definitive.
             */
            if (pathNamesPossiblyEqual(this.url.getPath(), o.url.getPath()) && getURLPath().equalsIgnoreCase(o.getURLPath())) {
                try {
                    return getAddress().equals(o.getAddress());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  9. docs/nl/docs/python-types.md

    {* ../../docs_src/python_types/tutorial001.py hl[2] *}
    
    
    ### Bewerk het
    
    Dit is een heel eenvoudig programma.
    
    Maar stel je nu voor dat je het vanaf nul zou moeten maken.
    
    Op een gegeven moment zou je aan de definitie van de functie zijn begonnen, je had de parameters klaar...
    
    Maar dan moet je “die methode die de eerste letter naar hoofdletters converteert” aanroepen.
    
    Was het `upper`? Was het `uppercase`? `first_uppercase`? `capitalize`?
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    ### Sub-dependencies { #sub-dependencies }
    
    You can have multiple dependencies and [sub-dependencies](tutorial/dependencies/sub-dependencies.md){.internal-link target=_blank} requiring each other (as parameters of the function definitions), some of them might be created with `async def` and some with normal `def`. It would still work, and the ones created with normal `def` would be called on an external thread (from the threadpool) instead of being "awaited".
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:56:21 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top