Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for PROPERTIES (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

            return new SystemPropertyInjection() {
                @Override
                String getDescription() {
                    return "using gradle.properties"
                }
    
                @Override
                void setup(AbstractConfigurationCacheIntegrationTest test) {
                    test.file("gradle.properties").text = "systemProp.${prop}=${value}"
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
         * Note: Project properties contains properties injected from profiles, if applicable. Their precedence is
         * {@code profile > project}, hence active profile property may override project property.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"name": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/GradlePropertiesIncludedBuildFixture.groovy

                """
            }
        }
    
        static class BuildSrc extends BuildWithGradleProperties {
    
            @Override
            void setup(AbstractIntegrationSpec spec) {
                spec.file("buildSrc/gradle.properties") << "bar=101"
                spec.file("buildSrc/build.gradle") << echoTaskForProperty("bar")
            }
    
            @Override
            String task() {
                return ":buildSrc:echo"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                return true;
            }
            File daemonJvmProperties = new File(getWorkingDir(), "gradle/gradle-daemon-jvm.properties");
            if (daemonJvmProperties.isFile()) {
                Properties properties = GUtil.loadProperties(daemonJvmProperties);
                String requestedVersion = properties.getProperty("toolchainVersion");
                if (requestedVersion != null) {
                    try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

            cacheDir.listFiles().length == 3 // gc file + cache properties + 'help' state
        }
    
        private TestFile createCacheEntryDir(String entry) {
            TestFile dir = cacheDir.createDir(entry)
            dir.createFile("state.bin")
            dir.createFile("fingerprint.bin")
            return dir
        }
    
        private TestFile getGcFile() {
            return cacheDir.file("gc.properties")
        }
    
        private TestFile getCacheDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.provider.Providers;
    import org.gradle.api.internal.tasks.properties.DefaultInputFilePropertySpec;
    import org.gradle.api.internal.tasks.properties.InputFilePropertySpec;
    import org.gradle.api.provider.Provider;
    import org.gradle.internal.execution.InputFingerprinter;
    import org.gradle.internal.execution.UnitOfWork;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            outputContains("exists = false")
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': file system entry")
            }
    
            when:
            file("gradle.properties") << """$IGNORE_FS_CHECKS_PROPERTY=build/*.lock"""
            configurationCacheRun()
    
            then:
            outputContains("exists = false")
            problems.assertResultHasProblems(result) {
                withNoInputs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

            Activation a = Activation.newBuilder().jdk(jdkVersion).build();
    
            Profile p = Profile.newBuilder().activation(a).build();
    
            return p;
        }
    
        private Properties newProperties(String javaVersion) {
            Properties props = new Properties();
            props.setProperty("java.version", javaVersion);
            return props;
        }
    
        @Test
        void testNullSafe() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

    import org.gradle.api.internal.tasks.TaskPropertyUtils
    import org.gradle.api.internal.tasks.properties.GetInputFilesVisitor
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.internal.properties.bean.PropertyWalker
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top