Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 685 for PROPERTIES (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            project.buildFile << """
                normalization {
                    runtimeClasspath {
                        properties('**/foo.properties') {
                            ignoreProperty '${IGNORE_ME}'
                        }
                        properties('some/path/to/foo.properties') {
                            ignoreProperty '${IGNORE_ME_TOO}'
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        }
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
         */
        public Properties getUserProperties() {
            return request.getUserProperties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['project.groupId'] == 'group-one'
            pomReader.properties['pom.groupId'] == 'group-one'
            pomReader.properties['groupId'] == 'group-one'
            pomReader.properties['project.artifactId'] == 'artifact-one'
            pomReader.properties['pom.artifactId'] == 'artifact-one'
            pomReader.properties['artifactId'] == 'artifact-one'
            pomReader.properties['project.version'] == 'version-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    ----
    
    This flag overrides any settings that disable the Daemon in your project or user `gradle.properties` files.
    
    To enable the Daemon by default in older Gradle versions, add the following setting to the `gradle.properties` file in the project root or your Gradle User Home (`GRADLE_USER_HOME`:
    
    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.daemon=true
    ----
    ====
    
    [[sec:disabling_the_daemon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

    			Properties: map[string]structuralschema.Structural{
    				"array": {
    					Items: &structuralschema.Structural{
    						Properties: map[string]structuralschema.Structural{
    							"a": {},
    							"c": {},
    						},
    					},
    				},
    				"specified": {
    					Properties: map[string]structuralschema.Structural{
    						"a": {},
    						"c": {},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

    import org.gradle.api.internal.tasks.properties.InspectionScheme;
    import org.gradle.api.internal.tasks.properties.InspectionSchemeFactory;
    import org.gradle.api.internal.tasks.properties.TaskScheme;
    import org.gradle.api.internal.tasks.properties.annotations.CacheableTaskTypeAnnotationHandler;
    import org.gradle.api.internal.tasks.properties.annotations.DestroysPropertyAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        MavenExecutionRequest setSystemProperties(Properties systemProperties);
    
        /**
         * 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: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	if lvl == rootLevel {
    		// metadata is a shallow copy. We can mutate it.
    		_, foundName := s.Properties["name"]
    		_, foundGenerateName := s.Properties["generateName"]
    		if foundName && foundGenerateName && len(s.Properties) == 2 {
    			s.Properties = nil
    		} else if (foundName || foundGenerateName) && len(s.Properties) == 1 {
    			s.Properties = nil
    		}
    		s.Type = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top