Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 796 for PROPERTIES (0.17 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            }
    
            return this;
        }
    
        @Override
        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public DefaultModelBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

            createProject()
        }
    
        @Test
        fun `should output instrumented-super-types properties with instrumented org-gradle super types with stable order`() {
            // When
            assertSucceeds()
    
            // Then
            val instrumentedSuperTypes = File(projectRoot, "distribution/build/instrumentation/instrumented-super-types.properties").readLines()
            val expectedSuperTypes = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    								},
    							},
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"subRule": {
    									Type: "object",
    									XValidations: apiextensions.ValidationRules{
    										{
    											Rule:    "isTest == true",
    											Message: "isTest should be true.",
    										},
    									},
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"isTest": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

    import org.gradle.internal.fingerprint.LineEndingSensitivity;
    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.StaticValue;
    import org.gradle.internal.properties.bean.PropertyWalker;
    
    import javax.annotation.Nullable;
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    === Properties in the API documentation
    
    The link:{groovyDslPath}/[Groovy DSL reference] shows properties as they are used in your build scripts, but the Javadocs only display methods. That's because properties are implemented as methods behind the scenes:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            Object value = ee.evaluate("${" + key + "}");
    
            assertEquals(checkValue, value);
        }
    
        @Test
        public void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception {
            String sysprop = "PPEET_sysprop1";
    
            Properties executionProperties = new Properties();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm_test.go

    }
    `, schema: &structuralschema.Structural{
    			Generic: structuralschema.Generic{Type: "object"},
    			Properties: map[string]structuralschema.Structural{
    				"pruned": {
    					Generic: structuralschema.Generic{Type: "object"},
    					Extensions: structuralschema.Extensions{
    						XEmbeddedResource: true,
    					},
    					Properties: map[string]structuralschema.Structural{
    						"spec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            where:
            systemPropsCleaner                       | _
            'System.properties.clear()'              | _
            'System.properties.keySet().clear()'     | _
            'System.properties.entrySet().clear()'   | _
            'System.setProperties(new Properties())' | _
        }
    
        def "system property removed after update at the configuration phase is removed when running from cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                    if (propertiesFile.isFile()) {
                        Properties properties = GUtil.loadProperties(propertiesFile);
                        return module(moduleName, properties, implementationClasspath);
                    }
                }
            }
            return null;
        }
    
        private Module module(String moduleName, Properties properties, Set<File> implementationClasspath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. tests/test_openapi_separate_input_output_schemas.py

                            },
                        },
                    }
                },
            },
            "components": {
                "schemas": {
                    "HTTPValidationError": {
                        "properties": {
                            "detail": {
                                "items": {"$ref": "#/components/schemas/ValidationError"},
                                "type": "array",
                                "title": "Detail",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top