Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 575 for PROPERTIES (0.13 sec)

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

            file("local.properties") << "\nunrelated.properties=foo"
            configurationCacheRun "run"
    
            then:
            output.count("ON CI") == 1
            configurationCache.assertStateLoaded()
    
            when: "running after changing the property value"
            file("local.properties").text = "ci=false"
            configurationCacheRun "run"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/zz_generated.deepcopy.go

    	if in.Items != nil {
    		in, out := &in.Items, &out.Items
    		*out = new(NestedValueValidation)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Properties != nil {
    		in, out := &in.Properties, &out.Properties
    		*out = make(map[string]NestedValueValidation, len(*in))
    		for key, val := range *in {
    			(*out)[key] = *val.DeepCopy()
    		}
    	}
    	if in.AdditionalProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pom.xml

    						<networkaddress.cache.negative.ttl>-1</networkaddress.cache.negative.ttl>
    					</systemPropertyVariables>
    					<properties>
    						<property>
    							<name>listener</name>
    							<value>jcifs.tests.PrintingRunListener</value>
    						</property>
    					</properties>
    					<useSystemClassLoader>false</useSystemClassLoader>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

        }
    
        @Test
        void testSystemScopeDependencyIsPresentInTheCompileClasspathElements() throws Exception {
            File pom = getProject("it0063");
    
            Properties eps = new Properties();
            eps.setProperty("jre.home", new File(pom.getParentFile(), "jdk/jre").getPath());
    
            MavenSession session = createMavenSession(pom, eps);
            MavenProject project = session.getCurrentProject();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/DaemonJvmCompatibilityCrossVersionSpec.groovy

            def jdk17 = AvailableJavaHomes.getJdk17()
    
            file("gradle.properties").writeProperties("org.gradle.java.home": jdk21.javaHome.absolutePath)
            withConnection { connection ->
                connection.newBuild().forTasks('help').run()
            }
    
            file("gradle.properties").writeProperties("org.gradle.java.home": jdk17.javaHome.absolutePath)
            withConnection { connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            } else if (targetVersion >= GradleVersion.version("6.8")) {
                return ['buildEnvironment', 'components', 'dependencies', 'dependencyInsight', 'dependentComponents', 'help', 'javaToolchains', 'projects', 'properties', 'tasks', 'model', 'outgoingVariants']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/ToolingApiPropertiesLoaderCrossVersionSpec.groovy

            false
        }
    }
    
    abstract class AbstractToolingApiPropertiesLoaderCrossVersionSpec extends ToolingApiSpecification {
    
        @Issue('https://github.com/gradle/gradle/issues/11173')
        def "System properties defined in gradle.properties are available in buildSrc and in included builds"() {
            setup:
            settingsFile << '''
                includeBuild 'includedBuild'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/MissingPropertyAnnotationHandler.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.properties.annotations;
    
    import org.gradle.api.problems.internal.GradleCoreProblemGroup;
    import org.gradle.internal.reflect.annotations.PropertyAnnotationMetadata;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

        }
    
        private static Map<String, String> convertSystemProperties(Properties properties) {
            Map<String, String> result = new HashMap<String, String>();
            for (Map.Entry<Object, Object> entry : properties.entrySet()) {
                result.put(entry.getKey().toString(), entry.getValue() == null ? null : entry.getValue().toString());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/HiddenInDslTest.kt

        val schema = schemaFromTypes(HasHiddenProperty::class, listOf(HasHiddenProperty::class))
    
        @Test
        fun `handles the hidden properties correctly`() {
            val aType = schema.dataClassesByFqName.getValue(DefaultFqName.parse(HasHiddenProperty::class.qualifiedName!!))
            assertTrue { aType.properties.single { it.name == "y" }.isHiddenInDsl }
    
            val result = schema.resolve(
                """
                x = 1
                y = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top