Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 796 for PROPERTIES (0.21 sec)

  1. 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)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            then:
            formatTree(result) == '''<chapter>
        <section>
            <title>Properties</title>
            <section>
                <title>Properties added by the <literal>thingo</literal> plugin</title>
                <titleabbrev><literal>thingo</literal> plugin</titleabbrev>
                <table>
                    <title>Properties - <literal>thingo</literal> plugin</title>
                    <thead>
                        <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        }
    
        Properties properties(Map<String, String> entries) {
            def properties = new Properties()
            entries.each { key, value -> properties.setProperty(key, value) }
            return properties
        }
    
        def "creates snapshot for properties"() {
            expect:
            def snapshot1 = snapshotter.snapshot(properties([:]))
            snapshot1 instanceof MapValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                }
    
                import org.gradle.api.internal.tasks.*
                import org.gradle.api.internal.tasks.properties.*
                import org.gradle.internal.fingerprint.*
                import org.gradle.internal.properties.*
                import org.gradle.internal.properties.bean.*
    
                import javax.annotation.Nullable
    
                task myTask(type: MyTask) {
                    inputString = "data"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    					if obj.Spec.Versions[i].Name != version {
    						continue
    					}
    					props := obj.Spec.Versions[i].Schema.OpenAPIV3Schema.Properties[root].Properties[key]
    					props.Default = nil
    					obj.Spec.Versions[i].Schema.OpenAPIV3Schema.Properties[root].Properties[key] = props
    				}
    			}
    		})
    	}
    
    	t.Logf("Creating CR and expecting defaulted fields in spec, but status does not exist at all")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top