Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 31 for DESCRIPTIONS (0.15 seconds)

  1. tests/test_tutorial/test_path_operation_configurations/test_tutorial003_tutorial004.py

    import importlib
    from textwrap import dedent
    
    import pytest
    from dirty_equals import IsList
    from fastapi.testclient import TestClient
    
    from ...utils import needs_py310
    
    DESCRIPTIONS = {
        "tutorial003": "Create an item with all the information, name, description, price, tax and a set of unique tags",
        "tutorial004": dedent("""
            Create an item with all the information:
    
            - **name**: each item must have a name
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 7K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

    /**
     * SMB1 NetShareEnum request message for enumerating network shares on a server.
     * This class implements the SMB1 transaction to retrieve a list of available shares
     * from the target server, including share names, types, and descriptions.
     */
    public class NetShareEnum extends SmbComTransaction {
    
        private static final String DESCR = "WrLeh\u0000B13BWz\u0000";
    
        /**
         * Constructs a NetShareEnum request
         * @param config
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/path-operation-configuration.md

    You can add a `summary` and `description`:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[18:19] *}
    
    ## Description from docstring { #description-from-docstring }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  4. cmd/sts-errors.go

    	apiErr, ok := e[errCode]
    	if !ok {
    		return e[ErrSTSInternalError]
    	}
    	return apiErr
    }
    
    // error code to STSError structure, these fields carry respective
    // descriptions for all the error responses.
    var stsErrCodes = stsErrorCodeMap{
    	ErrSTSAccessDenied: {
    		Code:           "AccessDenied",
    		Description:    "Generating temporary credentials not allowed for this request.",
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Feb 05 00:29:41 GMT 2025
    - 6K bytes
    - Click Count (1)
  5. architecture/README.md

    ## Architecture decision records (ADRs)
    
    The Gradle team uses ADRs to record architectural decisions that the team has made.
    
    See [Architecture decisions records](standards) for the list of ADRs.
    Be aware these are very technical descriptions of the decisions, and you might find the documentation below more useful as an introduction to the internals of Gradle.
    
    ## Architecture overview
    
    ### Platform architecture
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  6. impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

     */
    package org.apache.maven.project;
    
    import java.io.File;
    import java.util.List;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.model.building.ModelSource;
    
    /**
     * Builds in-memory descriptions of projects.
     *
     * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    public interface ProjectBuilder {
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 10:13:56 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  7. CONTRIBUTING.md

        directories into the `android` directories.
    
    [Java style guide]: https://google.github.io/styleguide/javaguide.html
    [well-formed commit message]: https://google.github.io/eng-practices/review/developer/cl-descriptions.html
    
    #### Merging pull requests ####
    
    Due to Guava's nature as a subset of Google's internal codebase which is
    automatically synced to the public GitHub repository, we are unable to merge
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Dec 15 18:43:50 GMT 2025
    - 4K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/metadata.md

    Create metadata for your tags and pass it to the `openapi_tags` parameter:
    
    {* ../../docs_src/metadata/tutorial004_py39.py hl[3:16,18] *}
    
    Notice that you can use Markdown inside of the descriptions, for example "login" will be shown in bold (**login**) and "fancy" will be shown in italics (_fancy_).
    
    /// tip
    
    You don't have to add metadata for all the tags that you use.
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  9. docs/en/docs/advanced/additional-responses.md

    /// warning
    
    This is a rather advanced topic.
    
    If you are starting with **FastAPI**, you might not need this.
    
    ///
    
    You can declare additional responses, with additional status codes, media types, descriptions, etc.
    
    Those additional responses will be included in the OpenAPI schema, so they will also appear in the API docs.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  10. src/main/java/jcifs/util/ResourceManager.java

                    "activeResources", active, "closedResources", closed, "trackedResources", activeResources.size());
        }
    
        /**
         * Get active resource information
         *
         * @return set of active resource descriptions
         */
        public Set<String> getActiveResources() {
            Set<String> result = Collections.newSetFromMap(new ConcurrentHashMap<>());
    
            for (ResourceHolder holder : activeResources.values()) {
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.2K bytes
    - Click Count (0)
Back to Top