Search Options

Results per page
Sort
Preferred Languages
Advance

Results 781 - 790 of 1,206 for targetOS (0.05 sec)

  1. src/main/java/org/codelibs/core/lang/MethodUtil.java

         */
        @SuppressWarnings("unchecked")
        public static <T> T invoke(final Method method, final Object target, final Object... args)
                throws InvocationTargetRuntimeException, IllegalAccessRuntimeException {
            assertArgumentNotNull("method", method);
    
            try {
                return (T) method.invoke(target, args);
            } catch (final InvocationTargetException ex) {
                final Throwable t = ex.getCause();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/ListIteratorTester.java

    /**
     * A utility similar to {@link IteratorTester} for testing a {@link ListIterator} against a known
     * good reference implementation. As with {@code IteratorTester}, a concrete subclass must provide
     * target iterators on demand. It also requires three additional constructor parameters: {@code
     * elementsToInsert}, the elements to be passed to {@code set()} and {@code add()} calls; {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/SubtypeTester.java

    import com.google.errorprone.annotations.RequiredModifiers;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    import java.lang.reflect.Method;
    import java.lang.reflect.Type;
    import java.util.Arrays;
    import java.util.Comparator;
    import javax.lang.model.element.Modifier;
    import org.jspecify.annotations.NullUnmarked;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SidResolver.java

         * This specialized method returns a Map of users and local groups for the
         * target server where keys are SIDs representing an account and each value
         * is an ArrayList of SIDs represents the local groups that the account is
         * a member of.
         *
         * This method is designed to assist with computing access control for a
         * given user when the target object's ACL has local groups. Local groups
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. docs/es/docs/fastapi-cli.md

    Para producciรณn usarรญas `fastapi run` en su lugar. ๐Ÿš€
    
    Internamente, **FastAPI CLI** usa <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>, un servidor ASGI de alto rendimiento y listo para producciรณn. ๐Ÿ˜Ž
    
    ## `fastapi dev`
    
    Ejecutar `fastapi dev` inicia el modo de desarrollo.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. docs/pt/docs/fastapi-cli.md

    Para produรงรฃo vocรช usaria `fastapi run` no lugar. ๐Ÿš€
    
    Internamente, **FastAPI CLI** usa <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>, um servidor ASGI de alta performance e pronto para produรงรฃo. ๐Ÿ˜Ž
    
    ## `fastapi dev`
    
    Quando vocรช roda `fastapi dev`, isso vai executar em modo de desenvolvimento.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/static-files.md

    `name="static"` ๐Ÿค โšซ๏ธ ๐Ÿ“› ๐Ÿ‘ˆ ๐Ÿ’ช โš™๏ธ ๐Ÿ”˜ **FastAPI**.
    
    ๐ŸŒ ๐Ÿ‘ซ ๐Ÿ”ข ๐Ÿ’ช ๐ŸŽ ๐ŸŒ˜ "`static`", ๐Ÿ”† ๐Ÿ‘ซ โฎ๏ธ ๐Ÿ’ช &amp; ๐ŸŽฏ โ„น ๐Ÿ‘† ๐Ÿ‘ ๐Ÿˆธ.
    
    ## ๐ŸŒ… โ„น
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/request-forms-and-files.md

    /// info | Informaรงรฃo
    
    Para receber arquivos carregados e/ou dados de formulรกrio, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Por exemplo: `pip install python-multipart`.
    
    ///
    
    ## Importe `File` e `Form`
    
    {* ../../docs_src/request_forms_and_files/tutorial001.py hl[1] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/conf/settings.xml

         | ...
         |
         | NOTE: If you just wanted to inject this configuration whenever someone set 'target-env' to
         |       anything, you could just leave off the <value/> inside the activation-property.
         |
        <profile>
          <id>env-dev</id>
    
          <activation>
            <property>
              <name>target-env</name>
              <value>dev</value>
            </property>
          </activation>
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 22 07:44:50 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/concepts.md

    โญ ๐Ÿ“ƒ, ๐Ÿ‘ค ๐Ÿ”œ ๐Ÿค ๐Ÿ‘† ๐ŸŒ… **๐Ÿงฑ ๐Ÿฎ** ๐Ÿ› ๏ธ FastAPI ๐Ÿˆธ.
    
    โœ‹๏ธ ๐Ÿ”œ, โžก๏ธ โœ… ๐Ÿ‘‰ โš  **โš› ๐Ÿ’ญ**. ๐Ÿ‘ซ ๐Ÿ”ง โœ” ๐Ÿ™† ๐ŸŽ ๐Ÿ†Ž ๐Ÿ•ธ ๐Ÿ› ๏ธ. ๐Ÿ‘ถ
    
    ## ๐Ÿ’‚โ€โ™‚ - ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”
    
    [โฎ๏ธ ๐Ÿ“ƒ ๐Ÿ”ƒ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”](https.md){.internal-link target=_blank} ๐Ÿ‘ฅ ๐Ÿ‡ญ๐Ÿ‡ฒ ๐Ÿ”ƒ โ” ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿšš ๐Ÿ” ๐Ÿ‘† ๐Ÿ› ๏ธ.
    
    ๐Ÿ‘ฅ ๐Ÿ‘€ ๐Ÿ‘ˆ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ›Ž ๐Ÿšš ๐Ÿฆฒ **๐Ÿ”ข** ๐Ÿ‘† ๐Ÿˆธ ๐Ÿ’ฝ, **๐Ÿค โŽ ๐Ÿ—ณ**.
    
    &amp; ๐Ÿ“ค โœ”๏ธ ๐Ÿ•ณ ๐Ÿˆš **โ™ป ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ“„**, โšซ๏ธ ๐Ÿ’ช ๐ŸŽ ๐Ÿฆฒ โš–๏ธ โšซ๏ธ ๐Ÿ’ช ๐Ÿ•ณ ๐ŸŽ.
    
    ### ๐Ÿ–ผ ๐Ÿงฐ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”
    
    ๐Ÿงฐ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿค โŽ ๐Ÿ—ณ:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top