Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for glass2 (0.14 sec)

  1. docs/pt/docs/features.md

    ## Recursos do Starlette
    
    **FastAPI** é totalmente compatível com (e baseado no) <a href="https://www.starlette.io/" class="external-link" target="_blank"><strong>Starlette</strong></a>. Então, qualquer código adicional Starlette que você tiver, também funcionará.
    
    `FastAPI` é na verdade uma sub-classe do `Starlette`. Então, se você já conhece ou usa Starlette, a maioria das funcionalidades se comportará da mesma forma.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. docs/fr/docs/features.md

    * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>, propose une documentation interactive. Vous permet de directement tester l'API depuis votre navigateur.
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Une autre documentation d'API est fournie par <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank"><strong>ReDoc</strong></a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    For example, reflective access to an internal package from another module can fail.
    
    The configured _main class_ is also baked into the `module-info.class` file of your application Jar.
    If you run the modular application directly using the `java` command, it is then sufficient to provide the module name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    /*
     * Styles for headings.
     */
    body.class-declaration-page .summary h2,
    body.class-declaration-page .details h2,
    body.class-use-page h2,
    body.module-declaration-page .block-list h2 {
        font-style: italic;
        padding:0;
        margin:15px 0;
    }
    body.class-declaration-page .summary h3,
    body.class-declaration-page .details h3,
    body.class-declaration-page .summary .inherited-list h2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. docs/it/docs/index.md

    ## Installazione
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    				DNSPolicy:     api.DNSClusterFirst,
    				Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent"}},
    			},
    		},
    	}
    
    	storageClass := "storage-class1"
    	storageClass2 := "storage-class2"
    
    	validPVCTemplate := api.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "pvc-abc",
    		},
    		Spec: api.PersistentVolumeClaimSpec{
    			StorageClassName: &storageClass,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. docs/pt/docs/alternatives.md

    * <a href="https://github.com/tiangolo/full-stack" class="external-link" target="_blank">https://github.com/tiangolo/full-stack</a>
    * <a href="https://github.com/tiangolo/full-stack-flask-couchbase" class="external-link" target="_blank">https://github.com/tiangolo/full-stack-flask-couchbase</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

        }
    
        private static <T> Class<?>[] getModelContractInterfaces(Class<T> targetType, Object sourceObject, Class<? extends T> viewType) {
            Map<String, Class<?>> potentialSubInterfaces = getPotentialModelContractSubInterfaces(targetType);
            Set<Class<?>> actualSubInterfaces = getActualImplementedModelContractSubInterfaces(sourceObject, potentialSubInterfaces);
    
            List<Class<?>> modelContractInterfaces = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    It is an error to try to resolve a configuration which has `canBeResolved` set to `false`.
    To some extent, this is similar to an _abstract class_ (`canBeResolved`=false) which is not supposed to be instantiated, and a concrete class extending the abstract class (`canBeResolved`=true).
    A resolvable configuration will extend at least one non-resolvable configuration (and may extend more than one).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration = conf().extendsFrom(otherConf)
            configuration.getDependencies().add(configurationDependency)
    
            then:
            dump(configuration) == """
    Configuration:  class='class org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration'  name='conf'  hashcode='${configuration.hashCode()}'  role='Legacy'
    Current Usage:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top