Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 685 for PROPERTIES (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

        private String basedir;
    
        private Properties properties;
    
        public PluginParameterExpressionEvaluator(MavenSession session) {
            this(session, null);
        }
    
        public PluginParameterExpressionEvaluator(MavenSession session, MojoExecution mojoExecution) {
            this.session = session;
            this.mojoExecution = mojoExecution;
            this.properties = new Properties();
            this.project = session.getCurrentProject();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         * Parses a sequence of XML elements and converts them to the appropriate {@link Properties} type.
         *
         * @param parser The XML parser
         * @return Converted Properties instance
         */
        private static Properties parseProperties(final XmlPullParser parser) throws Exception {
            final Properties properties = newImplementation(parser, Properties.class);
            while (parser.nextTag() == XmlPullParser.START_TAG) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadataStore;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        new File(projectDirectory, "gradle.properties") << "\norg.gradle.workers.max=${maxWorkers}\n"
    
    }
    
    private void setMaxHeap(File projectDirectory, String maxHeap) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.jvmargs=-Xmx${maxHeap}\n"
    
    }
    
    private void setParallel(File projectDirectory, boolean parallel) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.parallel=${parallel}\n"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            configurationCache.assertStateStored()
            outputContains "because the set of Gradle properties has changed."
    
            where:
            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (jvmArguments != null) {
                daemonParams.setJvmArgs(jvmArguments);
            }
    
            daemonParams.setRequestedJvmCriteria(properties.getDaemonJvmProperties());
    
            // Include the system properties that are defined in the daemon JVM args
            properties = properties.merge(daemonParams.getSystemProperties());
    
            Map<String, String> envVariables = operationParameters.getEnvironmentVariables(null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body_updates/test_tutorial001_py39.py

                }
            },
            "components": {
                "schemas": {
                    "Item": {
                        "type": "object",
                        "title": "Item",
                        "properties": {
                            "name": {
                                "anyOf": [{"type": "string"}, {"type": "null"}],
                                "title": "Name",
                            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                connection.setUseCaches(false);
                inputStream = connection.getInputStream();
                Properties properties = new Properties();
                properties.load(inputStream);
    
                String version = properties.get(VERSION_NUMBER_PROPERTY).toString();
    
                // We allow the gradle version to be overridden for tests that are sensitive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            cli.cli(request);
            cli.properties(request);
            cli.logging(request);
            assertFalse(MessageUtils.isColorEnabled());
    
            MessageUtils.setColorEnabled(true);
            request = new CliRequest(new String[] {"--non-interactive"}, null);
            cli.cli(request);
            cli.properties(request);
            cli.logging(request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top