Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 815 for PROPERTIES (0.24 seconds)

  1. tests/test_request_body_parameters_media_type.py

                            "type": "object",
                            "properties": {"name": {"title": "Name", "type": "string"}},
                        },
                        "ValidationError": {
                            "title": "ValidationError",
                            "required": ["loc", "msg", "type"],
                            "type": "object",
                            "properties": {
                                "loc": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. tests/test_forms_single_param.py

                            },
                        }
                    }
                },
                "components": {
                    "schemas": {
                        "Body_post_form_form__post": {
                            "properties": {
                                "username": {"type": "string", "title": "Username"}
                            },
                            "type": "object",
                            "required": ["username"],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

            Activation a = Activation.newBuilder().property(ap).build();
    
            Profile p = Profile.newBuilder().activation(a).build();
    
            return p;
        }
    
        private Properties newProperties(String key, String value) {
            Properties props = new Properties();
            props.setProperty(key, value);
            return props;
        }
    
        @Test
        void testNullSafe() throws Exception {
            Profile p = Profile.newInstance();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  4. tests/test_additional_properties.py

                    "schemas": {
                        "Items": {
                            "title": "Items",
                            "required": ["items"],
                            "type": "object",
                            "properties": {
                                "items": {
                                    "title": "Items",
                                    "type": "object",
                                    "additionalProperties": {"type": "integer"},
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

         * @param ignoreExceptions whether to ignore exceptions
         * @param properties the appender properties
         * @param minLevel the minimum log level to capture
         */
        protected LogNotificationAppender(final String name, final Filter filter, final Layout<? extends Serializable> layout,
                final boolean ignoreExceptions, final Property[] properties, final Level minLevel) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
  6. tests/test_sub_callbacks.py

                                "properties": {"ok": {"title": "Ok", "type": "boolean"}},
                            },
                            "ValidationError": {
                                "title": "ValidationError",
                                "required": ["loc", "msg", "type"],
                                "type": "object",
                                "properties": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  7. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    ## Decision
    
    ### Types of properties that should not use lazy types
    
    The guidelines below do not apply to all properties. There are cases where the lazy types should not be used:
    
    #### Non-calculated values
    
    These are inappropriate uses of lazy types:
    
    ```groovy
    class Example {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PomBuilder.java

            }
            if (packaging != null) {
                xml.append("    <packaging>").append(packaging).append("</packaging>\n");
            }
    
            if (!properties.isEmpty()) {
                xml.append("    <properties>\n");
                for (Property property : properties) {
                    xml.append("        <")
                            .append(property.name)
                            .append(">")
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  9. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

            MemberType.FIELD -> hasPropertyAttribute(kmClass::properties, jvmSignature, predicate)
            MemberType.CONSTRUCTOR -> hasConstructorAttribute(kmClass::constructors, jvmSignature, predicate)
            MemberType.METHOD -> hasFunctionAttribute(kmClass::functions, jvmSignature, predicate) ||
                hasPropertyAttribute(kmClass::properties, jvmSignature, predicate)
        }
    }
    
    
    private
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jul 04 09:21:38 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        }
    
        @Override
        public Properties getSystemProperties() {
            return request.getSystemProperties();
        }
    
        @Override
        public FilterModelBuildingRequest setSystemProperties(Properties systemProperties) {
            request.setSystemProperties(systemProperties);
    
            return this;
        }
    
        @Override
        public Properties getUserProperties() {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 6.3K bytes
    - Click Count (0)
Back to Top