Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 739 for PROPERTIES (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/convert.go

    		if err != nil {
    			return nil, err
    		}
    		ss.Items = item
    	}
    
    	if len(s.Properties) > 0 {
    		ss.Properties = make(map[string]Structural, len(s.Properties))
    		for k, x := range s.Properties {
    			fld, err := NewStructural(&x)
    			if err != nil {
    				return nil, err
    			}
    			ss.Properties[k] = *fld
    		}
    	}
    
    	if s.AdditionalProperties != nil {
    		if s.AdditionalProperties.Schema != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

        }
    
        private static void addSystemProperties(Properties systemProperties, File gradleUserHome, File rootDir) {
            // The location with highest priority needs to come last here, as it overwrites any previous entries.
            systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(rootDir, "gradle.properties")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

            ]
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/upgraded-properties.json")
                .contentsAsString(StandardCharsets.UTF_8)
                .isEqualTo(MAPPER.writeValueAsString(properties))
        }
    
        def "should generate json properties ordered alphabetically"() {
            given:
            def givenSource = source """
                package org.gradle.test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheBuilder.java

            this.factory = factory;
            this.baseDir = baseDir;
        }
    
        @Override
        public CacheBuilder withProperties(Map<String, ?> properties) {
            this.properties = properties;
            return this;
        }
    
        @Override
        public CacheBuilder withDisplayName(String displayName) {
            this.displayName = displayName;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:10:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelVersionProcessor.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    import java.util.Properties;
    
    import org.apache.maven.api.services.ModelBuilderRequest;
    
    /**
     * Allows a fixed set of properties that are valid inside a version and that could be overwritten for example on the
     * commandline
     */
    public interface ModelVersionProcessor {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEnablementIntegrationTest.groovy

            origin            | argument
            "long option"     | ENABLE_CLI_OPT
            "system property" | ENABLE_SYS_PROP
        }
    
        def "can enable with a property in root directory gradle.properties"() {
            given:
            file('gradle.properties') << """
                $ENABLE_GRADLE_PROP
            """
    
            when:
            run 'help'
    
            then:
            fixture.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K 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-compat/src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.manager;
    
    import javax.inject.Inject;
    
    import java.util.List;
    import java.util.Properties;
    
    import org.apache.maven.model.Activation;
    import org.apache.maven.model.ActivationProperty;
    import org.apache.maven.model.Profile;
    import org.apache.maven.profiles.DefaultProfileManager;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top