Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 685 for PROPERTIES (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

                name == 'custom repo'
                type == 'MAVEN'
                properties.size() == 5
                properties.URL == 'http://foo.com'
                properties.ARTIFACT_URLS == ['http://foo.com/artifacts1']
                properties.METADATA_SOURCES == ['gradleMetadata', 'artifact']
                properties.AUTHENTICATED == true
                properties.'AUTHENTICATION_SCHEMES' == ['DigestAuthentication']
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

        }
    
        static ZipEntryContext zipEntry(String path, Map<String, String> attributes, String comments = "") {
            Properties properties = new Properties()
            properties.putAll(attributes)
            ByteArrayOutputStream bos = new ByteArrayOutputStream()
            PropertiesUtils.store(properties, bos, comments, Charset.defaultCharset(), SystemProperties.getInstance().lineSeparator)
            return zipEntry(path, bos.toByteArray())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    			if err := json.Unmarshal([]byte(tt.wantedItemsSchema), &wantedItemsSchema); err != nil {
    				t.Fatal(err)
    			}
    
    			gotProperties := properties(got.schema.Properties)
    			wantedProperties := properties(wantedSchema.Properties)
    			if !gotProperties.Equal(wantedProperties) {
    				t.Fatalf("unexpected properties, got: %s, expected: %s", gotProperties.List(), wantedProperties.List())
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    		error   string
    	}
    
    	testCases := []tct{
    		{
    			name: "allowed properties valuevalidation, additional properties structure",
    			schema: Structural{
    				AdditionalProperties: &StructuralOrBool{
    					Structural: &Structural{
    						Generic: Generic{
    							Type: "object",
    						},
    						Properties: map[string]Structural{
    							"bar": {
    								Generic: Generic{
    									Type: "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            properties.getProperty(WrapperExecutor.DISTRIBUTION_BASE_PROPERTY) == wrapper.getDistributionBase().toString()
            properties.getProperty(WrapperExecutor.DISTRIBUTION_PATH_PROPERTY) == wrapper.getDistributionPath()
            properties.getProperty(WrapperExecutor.ZIP_STORE_BASE_PROPERTY) == wrapper.getArchiveBase().toString()
            properties.getProperty(WrapperExecutor.ZIP_STORE_PATH_PROPERTY) == wrapper.getArchivePath()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    			Schema: mustSchema(`
                    properties:
                      foo:
                        type: array
                        items:
                          type: object
                          properties:
                            key:
                              type: string
                            bar:
                              type: object
                              properties:
                                baz:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    // metadata.name and metadata.generateName properties are specified, making a shallow copy of the provided schema if needed.
    func WithTypeAndObjectMeta(s *spec.Schema) *spec.Schema {
    	if s.Properties != nil &&
    		s.Properties["kind"].Type.Contains("string") &&
    		s.Properties["apiVersion"].Type.Contains("string") &&
    		s.Properties["metadata"].Type.Contains("object") &&
    		s.Properties["metadata"].Properties != nil &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java

            Object value = ee.evaluate(expr);
    
            assertEquals(expr, value);
        }
    
        @Test
        void testPOMPropertyExtractionWithMissingProject_WithDotNotation() throws Exception {
            String key = "m2.name";
            String checkValue = "value";
    
            Properties properties = new Properties();
            properties.setProperty(key, checkValue);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    [[managed_properties]]
    == Using Gradle Managed Properties
    
    Gradle's managed properties allow you to declare properties as abstract getters (Java, Groovy) or abstract properties (Kotlin).
    
    Gradle then automatically provides the implementation for these properties, managing their state.
    
    A property may be _mutable_, meaning that it has both a `get()` method and `set()` method:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        File createModule(String simpleName, Properties properties) {
            def moduleDir = tmpDir.createDir("$simpleName/build/resources/main")
            save(properties, moduleDir.file("gradle-$simpleName-classpath.properties"))
            moduleDir
        }
    
        private Properties properties(Map kvs = [:]) {
            new Properties().with {
                putAll(kvs)
                it
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top