Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 560 for Description (0.19 sec)

  1. tests/test_security_oauth2_optional_description.py

                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. 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",
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>String</type>
            </field>
            <field>
              <name>description</name>
              <version>1.0.0+</version>
              <description>Description of the plugin.</description>
              <type>String</type>
            </field>
            <field>
              <name>groupId</name>
              <version>1.0.0+</version>
              <description>The group id of the plugin.</description>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  4. api/maven-api-settings/src/main/mdo/settings.mdo

              <version>1.0.0+</version>
              <description>
                The proxy user.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>password</name>
              <version>1.0.0+</version>
              <description>
                The proxy password.
              </description>
              <type>String</type>
            </field>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K 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,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 07 20:17:46 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	apiErr, ok := e[errCode]
    	if !ok {
    		apiErr = e[ErrInternalError]
    	}
    	if err != nil {
    		apiErr.Description = fmt.Sprintf("%s (%s)", apiErr.Description, err)
    	}
    	if globalSite.Region != "" {
    		if errCode == ErrAuthorizationHeaderMalformed {
    			apiErr.Description = fmt.Sprintf("The authorization header is malformed; the region is wrong; expecting '%s'.", globalSite.Region)
    			return apiErr
    		}
    	}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 06 05:26:02 GMT 2024
    - 90.2K bytes
    - Viewed (6)
  7. common/scripts/metallb-native.yaml

                type: object
              spec:
                description: BGPPeerSpec defines the desired state of Peer.
                properties:
                  bfdProfile:
                    type: string
                  ebgpMultiHop:
                    description: EBGP peer is multi-hops away
                    type: boolean
                  holdTime:
                    description: Requested BGP hold time, per RFC4271.
                    type: string
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  8. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <type>String</type>
              <description>The version of the underlying metadata model.</description>
            </field>
            <field>
              <name>groupId</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>The groupId when this directory represents "groupId/artifactId" or "groupId/artifactId/version".</description>
            </field>
            <field>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <required>true</required>
              <description>The full name of the project.</description>
              <type>String</type>
            </field>
            <field>
              <name>description</name>
              <version>3.0.0+</version>
              <description>A detailed description of the project, used by Maven whenever it needs to
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  10. .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
    
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
Back to top