Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 752 for PROPERTIES (0.21 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

         */
        @Deprecated
        public MavenBuildTimestamp(Instant time, Properties properties) {
            this(time, properties != null ? properties.getProperty(BUILD_TIMESTAMP_FORMAT_PROPERTY) : null);
        }
    
        public MavenBuildTimestamp(Instant time, String timestampFormat) {
            if (timestampFormat == null) {
                timestampFormat = DEFAULT_BUILD_TIMESTAMP_FORMAT;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    import org.gradle.internal.properties.PropertyValue
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.properties.annotations.AbstractPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.PropertyMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "unit": "none"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "S3 Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
                    }
                  }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * Provides safe access to the system properties, preventing concurrent calls to change system properties.
         *
         * This can be used to wrap 3rd party APIs that iterate over the system properties, so they won't result in {@link java.util.ConcurrentModificationException}s.
         *
         * This method can be used to override system properties temporarily.  The original values of the given system properties are restored before returning.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/InspectionSchemeFactory.java

    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler;
    import org.gradle.internal.properties.annotations.TypeAnnotationHandler;
    import org.gradle.internal.properties.annotations.TypeMetadataStore;
    import org.gradle.internal.properties.bean.DefaultPropertyWalker;
    import org.gradle.internal.properties.bean.PropertyWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            else -> null
        }
    
        override fun getSystemProperties(): Environment.Properties =
            DefaultProperties(System.getProperties().uncheckedCast())
    
        override fun getVariables(): Environment.Properties =
            DefaultProperties(System.getenv())
    
        internal
        open class DefaultProperties(val map: Map<String, String>) : Environment.Properties {
            override fun byNamePrefix(prefix: String): Map<String, String?> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top