Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    L = validateDistribution; private final java.util.Properties properties; private final java.io.File propertiesFile; private final WrapperConfiguration config; public static WrapperExecutor forProjectDirectory(java.io.File); public static WrapperExecutor forWrapperProperties(java.io.File); void WrapperExecutor(java.io.File, java.util.Properties); private String readDistroUrl(); private static void loadProperties(java.io.File, java.util.Properties) throws java.io.IOException; public java.net.URI getDistribution();...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    		{
    			name: "valid nested object of object",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    					"nestedObj": {
    						Generic: schema.Generic{
    							Type: "object",
    						},
    						Properties: map[string]schema.Structural{
    							"val": {
    								Generic: schema.Generic{
    									Type: "integer",
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

      public void testFromPropertiesNullKey() {
        Properties properties =
            new Properties() {
              @Override
              public Enumeration<?> propertyNames() {
                return Iterators.asEnumeration(Arrays.asList(null, "first", "second").iterator());
              }
            };
        properties.setProperty("first", "true");
        properties.setProperty("second", "null");
    
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `archiveAppendix`, `archiveFileName` , `archiveFile`, `archiveBaseName`, `archiveClassifier`, `destinationDirectory`, `archiveExtension` and `archiveVersion` properties instead.
    
    ==== IdeaModule API Cleanup
    
    The deprecated `testSourceDirs` and `testResourceDirs` properties of the `IdeaModule` type have been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    On the command line, add this to your Gradle invocation:
    
    [source,properties]
    ----
    -Djavax.xml.accessExternalDTD=http
    ----
    
    To make this workaround persistent, add the following line to your `gradle.properties`:
    
    [source,properties]
    ----
    systemProp.javax.xml.accessExternalDTD=http
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. .teamcity/.mvn/wrapper/maven-wrapper.jar

    String ZIP_STORE_PATH_PROPERTY = zipStorePath; private final java.util.Properties properties; private final java.io.File propertiesFile; private final Appendable warningOutput; private final WrapperConfiguration config; public static WrapperExecutor forProjectDirectory(java.io.File, Appendable); public static WrapperExecutor forWrapperProperties(java.io.File, Appendable); void WrapperExecutor(java.io.File, java.util.Properties, Appendable); private java.net.URI prepareDistributionU() throws java....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			obj, ok := schema.Items.Schema.Properties[k]
    			if !ok {
    				// we validate that all XListMapKeys are existing properties in ValidateCustomResourceDefinitionOpenAPISchema, so skipping here is ok
    				continue
    			}
    
    			if isRequired[k] == false && obj.Default == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            public PropertyMetadata getProperty(String name) {
                return properties.get(name);
            }
    
            public PropertyMetadata property(String name) {
                PropertyMetadata property = properties.get(name);
                if (property == null) {
                    property = new PropertyMetadata(name);
                    properties.put(name, property);
                }
                return property;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The order of elements in `Iterable` properties marked with either `@OutputFiles` or `@OutputDirectories` now matters. If the order changes, the property is no longer considered up to date.
    +
    Prefer using separate properties with `@OutputFile`/`@OutputDirectory` annotations or use `Map` properties with `@OutputFiles`/`@OutputDirectories` instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top