Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,255 for PROPERTIES (0.33 sec)

  1. platforms/core-runtime/build-configuration/src/test/groovy/org/gradle/internal/buildconfiguration/UpdateDaemonJvmModifierTest.groovy

        def "writes expected properties into file"() {
            when:
            UpdateDaemonJvmModifier.updateJvmCriteria(daemonJvmPropertiesFile, JavaVersion.VERSION_11, JvmVendor.fromString("IBM"), JvmImplementation.VENDOR_SPECIFIC)
            then:
            def props = daemonJvmPropertiesFile.properties
            props[DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION_PROPERTY] == "11"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

                tasks.register('printSystemProperty') {
                    doLast {
                        System.properties.each { k, v ->
                            println("$k=$v")
                        }
                    }
                }
            '''
        }
    
        @TargetGradleVersion(">=3.0 <7.6")
        def "Custom system properties are ignored in older Gradle versions"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tests/test_generate_unique_id_function.py

                    "Body_foo_post_root": {
                        "title": "Body_foo_post_root",
                        "required": ["item1", "item2"],
                        "type": "object",
                        "properties": {
                            "item1": {"$ref": "#/components/schemas/Item"},
                            "item2": {"$ref": "#/components/schemas/Item"},
                        },
                    },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.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 execution properties, never {@code null}.
         */
        Map<String, String> getSystemProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        File createModule(String simpleName, Properties properties) {
            def moduleDir = tmpDir.createDir("$simpleName/build/resources/main")
            save(properties, moduleDir.file("gradle-$simpleName-classpath.properties"))
            moduleDir
        }
    
        private Properties properties(Map kvs = [:]) {
            new Properties().with {
                putAll(kvs)
                it
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.properties.annotations;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    import org.gradle.internal.service.scopes.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

                def w1 = tasks.create("w1", WriteProperties) {
                    destinationFile = file("w1.properties")
                    properties = [v: 1]
                }
                def w2 = tasks.create("w2", WriteProperties) {
                    destinationFile = file("w2.properties")
                    properties = [v: 1]
                }
    
                tasks.create("w").dependsOn w1, w2
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    	}
    
    	for k, vFld := range v.Properties {
    		if sFld, ok := s.Properties[k]; !ok {
    			if sAdditionalPropertiesSchema == nil || !opts.AllowValidationPropertiesWithAdditionalProperties {
    				allErrs = append(allErrs, field.Required(sPath.Child("properties").Key(k), fmt.Sprintf("because it is defined in %s", vPath.Child("properties").Key(k))))
    			} else {
    				// Allow validations on specific properties if there exists an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    [[sec:project_properties]]
    == Project properties
    
    Project properties are available on the link:{groovyDslPath}/org.gradle.api.Project.html[Project] object.
    They can be set from the command line using the `-P` / `--project-prop` <<command_line_interface.adoc#sec:environment_options, environment option>>.
    
    The following examples demonstrate how to set project properties in different ways.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

            "1.8",
            "1.9",
            "2.0",
        ]
    
        private final Factory<Properties> propertiesFactory
        private Properties properties
    
        KotlinGradlePluginVersions() {
            this(new ClasspathVersionSource("kotlin-versions.properties", KotlinGradlePluginVersions.classLoader))
        }
    
        private KotlinGradlePluginVersions(Factory<Properties> propertiesFactory) {
            this.propertiesFactory = propertiesFactory
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top