Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 492 for PROPERTIES (0.19 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            try {
                properties.load(inputStream);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            } finally {
                IoActions.closeQuietly(inputStream);
            }
            return properties;
        }
    
        public static void saveProperties(Properties properties, File propertyFile) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            try {
                properties.load(inputStream);
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            } finally {
                IoActions.closeQuietly(inputStream);
            }
            return properties;
        }
    
        public static void saveProperties(Properties properties, File propertyFile) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/listtype/validation_test.go

    		},
    		{name: "list without items",
    			obj: map[string]interface{}{
    				"array": []interface{}{"a", "b", "a"},
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    					"array": {
    						Generic: schema.Generic{
    							Type: "array",
    						},
    					},
    				},
    			},
    		},
    
    		{name: "set list with one item",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

     * <tr><td><code>*</code></td>                 <td></td>               <td>user properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>system properties</td></tr>
     * <tr><td><code>*</code></td>                 <td></td>               <td>project properties</td></tr>
     * </table>
     *
     * @see Session
     * @see Project
     * @see org.apache.maven.api.settings.Settings
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                        // Work around https://issues.apache.org/jira/browse/GROOVY-10555
                        continue;
                    }
                    if (metaProperty.getName().equals("properties")) {
                        properties.put("properties", properties);
                        continue;
                    }
                    if (metaProperty instanceof MetaBeanProperty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

                  "options": "Time"
                },
                "properties": [
                  {
                    "id": "custom.hidden",
                    "value": true
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Value #A"
                },
                "properties": [
                  {
                    "id": "displayName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BNDSmokeTest.groovy

            buildFile << """
    ${addBNDBuilderPlugin()}
    
    dependencies {
        implementation "org.apache.commons:commons-lang3:$commonsVersion"
    }
    
    tasks.named("jar") {
        bundle {
            properties.empty() // Make this work with CC per: https://github.com/bndtools/bnd/blob/master/gradle-plugins/README.md#gradle-configuration-cache-support
    
            bnd('Import-Package': 'org.apache.*')
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    removed("Method", "Task.setSourceCompatibility(java.lang.String)"),
                )
            }
        }
    
        @Test
        fun `should automatically accept binary incompatibilities for upgraded properties`() {
            checkBinaryCompatible(
                v1 = {
                    withFile(
                        "java/com/example/Task.java",
                        """
                            package com.example;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        public MavenExecutionRequest setSystemProperties(Properties properties) {
            if (properties != null) {
                this.systemProperties = SystemProperties.copyProperties(properties);
            } else {
                this.systemProperties = null;
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setUserProperties(Properties userProperties) {
            if (userProperties != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

        }
    
        def "reads timeout from wrapper properties"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultBaseUrl())
            server.expectAndBlock(server.get("/$TEST_DISTRIBUTION_URL"))
    
            and:
            file('gradle/wrapper/gradle-wrapper.properties') << "networkTimeout=5000"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top