Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 686 for Components (0.23 seconds)

  1. tests/test_security_http_base_description.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"HTTPBase": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "HTTPBase": {
                            "type": "http",
                            "scheme": "Other",
                            "description": "Other Security Scheme",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  2. tests/test_custom_schema_fields.py

            },
        },
    }
    
    
    def test_custom_response_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json()["components"]["schemas"]["Item"] == item_schema
    
    
    def test_response():
        # For coverage
        response = client.get("/foo")
        assert response.status_code == 200, response.text
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  3. tests/test_security_api_key_query_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"APIKeyQuery": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyQuery": {"type": "apiKey", "name": "key", "in": "query"}
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  4. src/main/java/jcifs/util/ServerResponseValidator.java

            }
    
            // Check individual components
            String[] components = path.split("[/\\\\]");
            for (String component : components) {
                if (component.length() > MAX_PATH_COMPONENT_SIZE) {
                    failedValidations.incrementAndGet();
                    log.warn("Path component exceeds maximum length: {}", component.length());
                    throw new SmbException("Path component too long");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.6K bytes
    - Click Count (0)
  5. tests/test_security_api_key_cookie_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"APIKeyCookie": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyCookie": {"type": "apiKey", "name": "key", "in": "cookie"}
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  6. tests/test_security_oauth2_authorization_code_bearer.py

    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. tests/test_security_http_digest_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"HTTPDigest": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {"HTTPDigest": {"type": "http", "scheme": "digest"}}
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. tests/test_security_api_key_header_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"APIKeyHeader": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "APIKeyHeader": {"type": "apiKey", "name": "key", "in": "header"}
                    }
                },
            }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  9. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ArtifactVersion.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.versioning;
    
    /**
     * Describes an artifact version in terms of its components, converts it to/from a string and
     * compares two versions.
     *
     */
    public interface ArtifactVersion extends Comparable<ArtifactVersion> {
        int getMajorVersion();
    
        int getMinorVersion();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  10. tests/test_security_openid_connect_optional.py

                            "operationId": "read_current_user_users_me_get",
                            "security": [{"OpenIdConnect": []}],
                        }
                    }
                },
                "components": {
                    "securitySchemes": {
                        "OpenIdConnect": {
                            "type": "openIdConnect",
                            "openIdConnectUrl": "/openid",
                        }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.6K bytes
    - Click Count (0)
Back to Top