Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 466 for comp (0.18 sec)

  1. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

    // tag::apply-external-plugin[]
    plugins {
        id 'java'
        id 'checkstyle'
    
        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/java-library/src/main/groovy/com.example.java-library.gradle

    plugins {
        id('com.example.commons')
        id('java-library')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 65 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/kotlin-library/src/main/groovy/com.example.kotlin-library.gradle

    plugins {
        id('com.example.commons')
        id('org.jetbrains.kotlin.jvm')
        id('java-library')
    }
    
    dependencies {
        implementation('org.jetbrains.kotlin:kotlin-stdlib')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 175 bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/static-files.md

    {!../../../docs_src/static_files/tutorial001.py!}
    ```
    
    !!! note "Detalhes técnicos"
        Você também pode usar `from starlette.staticfiles import StaticFiles`.
    
        O **FastAPI** fornece o mesmo que `starlette.staticfiles` como `fastapi.staticfiles` apenas como uma conveniência para você, o desenvolvedor. Mas na verdade vem diretamente da Starlette.
    
    ### O que é "Montagem"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 07 13:09:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/resources/META-INF/gradle-plugins/com.example.custom-dependencies.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 648 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.service-conventions.gradle

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    def integrationTest = sourceSets.create('integrationTest')
    
    configurations[integrationTest.implementationConfigurationName].extendsFrom(configurations.testImplementation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.library-conventions.gradle

    // tag::plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
        id 'com.myorg.java-conventions'
    }
    // end::plugins[]
    
    // Projects have the 'com.myorg' group by convention
    group = 'com.myorg'
    
    publishing {
        publications {
            library(MavenPublication) {
                from components.java
            }
        }
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. docs/es/docs/learn/index.md

    # Aprender
    
    Aquí están las secciones introductorias y los tutoriales para aprender **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:26:26 UTC 2024
    - 218 bytes
    - Viewed (0)
  9. docs_src/response_cookies/tutorial002.py

    app = FastAPI()
    
    
    @app.post("/cookie-and-object/")
    def create_cookie(response: Response):
        response.set_cookie(key="fakesession", value="fake-cookie-session-value")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 272 bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/security/first-steps.md

    	Esse `tokenUrl="token"` se refere a uma URL relativa que nós não criamos ainda. Como é uma URL relativa, é equivalente a `./token`.
    
    	Porque estamos usando uma URL relativa, se sua API estava localizada em `https://example.com/`, então irá referir-se à `https://example.com/token`. Mas se sua API estava localizada em `https://example.com/api/v1/`, então irá referir-se à `https://example.com/api/v1/token`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top