Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 753 for PROPERTIES (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        }
    
        Properties properties(Map<String, String> entries) {
            def properties = new Properties()
            entries.each { key, value -> properties.setProperty(key, value) }
            return properties
        }
    
        def "creates snapshot for properties"() {
            expect:
            def snapshot1 = snapshotter.snapshot(properties([:]))
            snapshot1 instanceof MapValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                }
    
                import org.gradle.api.internal.tasks.*
                import org.gradle.api.internal.tasks.properties.*
                import org.gradle.internal.fingerprint.*
                import org.gradle.internal.properties.*
                import org.gradle.internal.properties.bean.*
    
                import javax.annotation.Nullable
    
                task myTask(type: MyTask) {
                    inputString = "data"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    					if obj.Spec.Versions[i].Name != version {
    						continue
    					}
    					props := obj.Spec.Versions[i].Schema.OpenAPIV3Schema.Properties[root].Properties[key]
    					props.Default = nil
    					obj.Spec.Versions[i].Schema.OpenAPIV3Schema.Properties[root].Properties[key] = props
    				}
    			}
    		})
    	}
    
    	t.Logf("Creating CR and expecting defaulted fields in spec, but status does not exist at all")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_dataclasses/test_tutorial003.py

                "schemas": {
                    "Author": {
                        "title": "Author",
                        "required": ["name"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "items": {
                                "title": "Items",
                                "type": "array",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.properties.InputBehavior
    import org.gradle.internal.properties.InputFilePropertyType
    import org.gradle.internal.properties.OutputFilePropertyType
    import org.gradle.internal.properties.PropertyValue
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.serialize.graph.Codec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

    import org.gradle.internal.properties.InputFilePropertyType
    import org.gradle.internal.properties.OutputFilePropertyType
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.PropertyAnnotationHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             */
            void onRemove(Object key);
    
            /**
             * Called when the caller unconditionally removes all properties in this Properties object, for example by calling {@link Properties#clear()}.
             * <p>
             * The state of the observed Properties object is undefined for the duration of the call: it may be already completely or partially
             * modified to reflect the result of the operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::sample[dir="snippets/ant/properties/groovy",files="build.gradle[tags=set-property]"]
    ====
    
    Many Ant tasks set properties when they execute.
    There are several ways to get the value of these properties.
    You can get the property directly from the `AntBuilder` instance.
    The Ant properties are also available as a Map:
    
    ====
    include::sample[dir="snippets/ant/properties/groovy",files="build.xml[tags=getproperty]"]
    ====
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            request.setLocalRepository(getLocalRepository());
    
            // native
            Properties properties = new Properties();
            properties.setProperty("maven.resolver.transport", "apache");
            request.setSystemProperties(properties);
            Map<String, Object> configProperties =
                    systemSessionFactory.newRepositorySession(request).getConfigProperties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top