Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 474 for convenient (0.23 sec)

  1. docs/es/docs/advanced/response-headers.md

        También podrías utilizar `from starlette.responses import Response` o `from starlette.responses import JSONResponse`.
    
        **FastAPI** proporciona las mismas `starlette.responses` en `fastapi.responses` sólo que de una manera más conveniente para ti, el desarrollador. En otras palabras, muchas de las responses disponibles provienen directamente de Starlette.
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 12:51:12 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonsFixture.java

        /**
         * Returns all daemons that are visible to clients. May include daemons that are no longer running (eg they have crashed).
         */
        List<? extends DaemonFixture> getVisible();
    
        /**
         * Convenience to get a single daemon. Fails if there is not exactly 1 daemon.
         */
        DaemonFixture getDaemon();
    
        /**
         * Returns the base dir of the daemon.
         */
        File getDaemonBaseDir();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractHeaderExportingDependentSourceSet.java

    import org.gradle.util.internal.CollectionUtils;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * A convenience base class for implementing language source sets with dependencies and exported headers.
     */
    public abstract class AbstractHeaderExportingDependentSourceSet extends AbstractHeaderExportingSourceSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/AbstractSignatureTypeProvider.java

     * limitations under the License.
     */
    package org.gradle.plugins.signing.type;
    
    import org.gradle.api.InvalidUserDataException;
    
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Convenience base class for {@link SignatureTypeProvider} implementations.
     */
    public abstract class AbstractSignatureTypeProvider implements SignatureTypeProvider {
    
        private String defaultTypeExtension;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/static-files.md

    ```
    
    !!! note "Technical Details"
        You could also use `from starlette.staticfiles import StaticFiles`.
    
        **FastAPI** provides the same `starlette.staticfiles` as `fastapi.staticfiles` just as a convenience for you, the developer. But it actually comes directly from Starlette.
    
    ### What is "Mounting"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/FarmHashFingerprint64Test.java

        hasher.putDouble(0x0000000001000101d);
        assertEquals(0x388ee898bad75cbfL, hasher.hash().asLong());
      }
    
      /** Convenience method to compute a fingerprint on a full bytes array. */
      private static long fingerprint(byte[] bytes) {
        return fingerprint(bytes, bytes.length);
      }
    
      /** Convenience method to compute a fingerprint on a subset of a byte array. */
      private static long fingerprint(byte[] bytes, int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 15:56:47 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/package-info.java

     * CharSource CharSource}, {@link ByteSink ByteSink} and {@link CharSink CharSink}. They are
     * factories for I/O streams that provide many convenience methods that handle both opening and
     * closing streams for you.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/PropertiesGeneratorTask.java

    import org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObjectGenerator;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * A convenience superclass for those tasks which generate Properties configuration files from a domain object of type T.
     *
     * @param <T> The domain object type.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/XmlGeneratorTask.java

    import org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObjectGenerator;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * A convenience superclass for those tasks which generate XML configuration files from a domain object of type T.
     *
     * @param <T> The domain object type.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top