Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,794 for baseIdx (0.39 sec)

  1. docs/en/docs/tutorial/security/index.md

    So, it was a complete additional system.
    
    It is not very popular or used nowadays.
    
    ## OpenAPI
    
    OpenAPI (previously known as Swagger) is the open specification for building APIs (now part of the Linux Foundation).
    
    **FastAPI** is based on **OpenAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. docs/en/docs/features.md

    * Designed around these standards, after a meticulous study. Instead of an afterthought layer on top.
    * This also allows using automatic **client code generation** in many languages.
    
    ### Automatic docs
    
    Interactive API documentation and exploration web user interfaces. As the framework is based on OpenAPI, there are multiple options, 2 included by default.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

         * This allows the classes to be collected.
         *
         * <p>A map differs from a cache in that entries are not discarded based on memory pressure, but are discarded only when the key is collected.
         * You should prefer using a cache instead of a map where possible, and use a map only when generating other classes based on the key.
         *
         * <p>Note: this should be used to create _only_ global scoped instances.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblem.java

         *            {@link Severity#ERROR}.
         * @param source The source of the problem, may be {@code null}.
         * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown.
         * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

         *            {@link ModelProblem.Severity#ERROR}.
         * @param source The source of the problem, may be {@code null}.
         * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown.
         * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown.
         * @param exception The exception that caused this problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

         *
         * @param type The concrete type of element in the container (must implement {@link Named})
         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
         * @param collectionCallbackActionDecorator the decorator for collection callback action execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

                """
            }
    
            withMultipleActionTaskTypeInBuildScript()
        }
    
        def "worker-based task completes as soon as work items are finished (while another task is executing in parallel)"() {
            when:
            createDirs("childProject")
            settingsFile << """
                include ':childProject'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/ir/QuantizeUtils.cc

                                     quantizedElementType, converter);
      if (!quantDenseAttr) {
        return nullptr;
      }
    
      // Cast from an expressed-type-based type to storage-type-based type,
      // preserving the sparse shape (i.e. tensor<4xf32> -> tensor<4xi8>).
      ShapedType newSparseType = mlir::dyn_cast_or_null<ShapedType>(
          quantizedElementType.castExpressedToStorageType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return the one-based index of the line containing the problem or a non-positive value if unknown
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/DirectoryReport.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.OutputDirectory;
    
    import java.io.File;
    
    /**
     * A directory based report to be created.
     */
    public interface DirectoryReport extends ConfigurableReport {
    
        /**
         * Returns the entry point of a directory based Report
         *
         * This can be the index.html file in a HTML report
         *
         * @return the entry point of the report or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top