Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 789 for description (0.07 sec)

  1. api/maven-api-cli/src/main/mdo/core-extensions.mdo

          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>extensions</name>
              <description>A set of build extensions to use from this project.</description>
              <version>1.0.0+</version>
              <association xml.itemsStyle="flat">
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-05-18 09:15
    - 4.4K bytes
    - Viewed (0)
  2. .github/DISCUSSION_TEMPLATE/questions.yml

                return {"Hello": "World"}
          render: python
        validations:
          required: true
      - type: textarea
        id: description
        attributes:
          label: Description
          description: |
            What is the problem, question, or error?
    
            Write a short description telling me what you are doing, what you expect to happen, and what is currently happening.
          placeholder: |
    Registered: 2025-05-25 07:19
    - Last Modified: 2023-08-03 15:59
    - 5.8K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/path-operation-configuration.md

    ## Summary and description
    
    You can add a `summary` and `description`:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[18:19] *}
    
    ## Description from docstring
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 3.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/PrintingRunListener.java

    
        @Override
        public void testFinished ( Description description ) throws Exception {
            super.testFinished(description);
            System.err.println("Ran " + description.getDisplayName());
        }
    
    
        @Override
        public void testIgnored ( Description description ) throws Exception {
            super.testIgnored(description);
            System.err.println("Skipped " + description.getDisplayName());
        }
    
    Registered: 2025-05-25 00:10
    - Last Modified: 2018-07-01 13:12
    - 1.6K bytes
    - Viewed (0)
  5. internal/logger/help.go

    			Description: "Number of events per HTTP send to webhook target",
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         QueueSize,
    			Description: "configure channel queue size for webhook targets",
    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         QueueDir,
    			Description: `staging dir for undelivered logger messages e.g. '/home/logger-events'`,
    			Optional:    true,
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-11 22:20
    - 7.4K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/11-language-change.yml

      - type: textarea
        id: cost-description
        attributes:
          label: "Cost Description"
          description: "What is the cost of this proposal? (Every language change has a cost)"
    
      - type: input
        id: go-toolchain
        attributes:
          label: Changes to Go ToolChain
          description: "How many tools (such as vet, gopls, gofmt, goimports, etc.) would be affected? "
        validations:
          required: false
    
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-08-08 19:02
    - 4.7K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py

                                },
                            },
                        },
                        "summary": "Create an item",
                        "description": "Create an item with all the information:\n\n- **name**: each item must have a name\n- **description**: a long description\n- **price**: required\n- **tax**: if the item doesn't have tax, you can omit this\n- **tags**: a set of unique tag strings for this item",
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-19 06:33
    - 9.1K bytes
    - Viewed (0)
  8. cmd/admin-handler-utils.go

    			Description:    e.Error(),
    			HTTPStatusCode: http.StatusBadRequest,
    		}
    	case AdminError:
    		apiErr = APIError{
    			Code:           e.Code,
    			Description:    e.Message,
    			HTTPStatusCode: e.StatusCode,
    		}
    	case SRError:
    		apiErr = errorCodes.ToAPIErrWithErr(e.Code, e.Cause)
    	case decomError:
    		apiErr = APIError{
    			Code:           "XMinioDecommissionNotAllowed",
    			Description:    e.Err,
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-07-03 07:17
    - 8.4K bytes
    - Viewed (0)
  9. cmd/sts-errors.go

    // descriptions for all the error responses.
    var stsErrCodes = stsErrorCodeMap{
    	ErrSTSAccessDenied: {
    		Code:           "AccessDenied",
    		Description:    "Generating temporary credentials not allowed for this request.",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrSTSMissingParameter: {
    		Code:           "MissingParameter",
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-05 00:29
    - 6K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_response_model/test_tutorial005.py

        assert response.json() == {"name": "Bar", "description": "The Bar fighters"}
    
    
    def test_read_item_public_data(client: TestClient):
        response = client.get("/items/bar/public")
        assert response.status_code == 200, response.text
        assert response.json() == {
            "name": "Bar",
            "description": "The Bar fighters",
            "price": 62,
        }
    
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-19 06:57
    - 6.4K bytes
    - Viewed (0)
Back to top