Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 281 for PROPERTIES (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * (classes and objects) of the given [KaSymbolWithMembers]. The scope includes members inherited from the symbol's supertypes, in
         * addition to members which are declared explicitly inside the symbol's body.
         *
         * The member scope doesn't include synthetic Java properties. To get such properties, use [getSyntheticJavaPropertiesScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            newIsolatables[0].isolate() == map
        }
    
        def "can serialize/deserialize isolated Properties"() {
            Properties properties = new Properties()
            properties.setProperty("foo", "bar")
            properties.setProperty("baz", "buzz")
    
            when:
            serialize(isolatableFactory.isolate(properties))
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

                requestContext.getNativeServicesMode(),
                requestContext.getPriority()
            );
        }
    
        private Runnable runBuildInProcess(StartParameterInternal startParameter, DaemonParameters daemonParameters) {
            // Set the system properties and use this process
            Properties properties = new Properties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    	//
    	// schema:
    	//   type: object
    	//   metadata:
    	//     custom_type: "CustomObject"
    	//   required:
    	//     - name
    	//     - value
    	//   properties:
    	//     name:
    	//       type: string
    	//     nested:
    	//       type: object
    	//       properties:
    	//         subname:
    	//           type: string
    	//         flags:
    	//           type: object
    	//           additionalProperties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

                        }
                        conf {
                            'logging.properties'
                        }
                        lib {
    
                        }
                    }
                }
            }
    
            when:
            System.properties['java.home'] = software.file('Contents/Home').absolutePath
            System.properties['java.version'] = '1.9'
            Jvm java9Vm = new Jvm(macOs)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top