Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 753 for PROPERTIES (0.12 sec)

  1. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

            Object value = ee.evaluate("${" + key + "}");
    
            assertEquals(checkValue, value);
        }
    
        @Test
        public void testValueExtractionFromSystemPropertiesWithMissingProject() throws Exception {
            String sysprop = "PPEET_sysprop1";
    
            Properties executionProperties = new Properties();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/algorithm_test.go

    }
    `, schema: &structuralschema.Structural{
    			Generic: structuralschema.Generic{Type: "object"},
    			Properties: map[string]structuralschema.Structural{
    				"pruned": {
    					Generic: structuralschema.Generic{Type: "object"},
    					Extensions: structuralschema.Extensions{
    						XEmbeddedResource: true,
    					},
    					Properties: map[string]structuralschema.Structural{
    						"spec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 02:09:41 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            where:
            systemPropsCleaner                       | _
            'System.properties.clear()'              | _
            'System.properties.keySet().clear()'     | _
            'System.properties.entrySet().clear()'   | _
            'System.setProperties(new Properties())' | _
        }
    
        def "system property removed after update at the configuration phase is removed when running from cache"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                    if (propertiesFile.isFile()) {
                        Properties properties = GUtil.loadProperties(propertiesFile);
                        return module(moduleName, properties, implementationClasspath);
                    }
                }
            }
            return null;
        }
    
        private Module module(String moduleName, Properties properties, Set<File> implementationClasspath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tests/test_openapi_separate_input_output_schemas.py

                            },
                        },
                    }
                },
            },
            "components": {
                "schemas": {
                    "HTTPValidationError": {
                        "properties": {
                            "detail": {
                                "items": {"$ref": "#/components/schemas/ValidationError"},
                                "type": "array",
                                "title": "Detail",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenProfileResolveIntegrationTest.groovy

                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <properties>
                    <groupId.prop>groupB</groupId.prop>
                    <artifactId.prop>artifactB</artifactId.prop>
                    <version.prop>1.4</version.prop>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

            assertNotNull(result.getProblems());
            assertEquals(0, result.getProblems().size());
        }
    
        @Test
        void testBuildRequestWithUserToolchains() throws Exception {
            Properties props = new Properties();
            props.put("key", "user_value");
            ToolchainModel toolchain = new ToolchainModel();
            toolchain.setType("TYPE");
            toolchain.setProvides(props);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            when:
            System.properties['os.name'] = 'Mac OS X'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.MacOs
    
            when:
            System.properties['os.name'] = 'Darwin'
    
            then:
            OperatingSystem.current() instanceof OperatingSystem.MacOs
    
            when:
            System.properties['os.name'] = 'osx'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    
    [[sec:extra_properties]]
    ==== Extra Properties
    
    Gradle's enhanced objects, including projects, tasks, and source sets, can hold user-defined properties.
    
    [.multi-language-text.lang-kotlin]
    Add, read, and set extra properties via the owning object's `extra` property. Alternatively, you can access extra properties via Kotlin delegated properties using `by extra`.
    
    [.multi-language-text.lang-groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Credentials in system properties take precedence over the ones embedded in `distributionUrl`.
    
    [TIP]
    ====
    HTTP Basic Authentication should only be used with `HTTPS` URLs and not plain `HTTP` ones.
    With Basic Authentication, the user credentials are sent in clear text.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top