Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for set (0.12 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilderTest.groovy

            doc.classExtensions.size() == 2
    
            doc.classExtensions[0].pluginId == 'a'
            doc.classExtensions[0].mixinClasses == [extensionA1, extensionA2] as Set
    
            doc.classExtensions[1].pluginId == 'b'
            doc.classExtensions[1].mixinClasses == [extensionB] as Set
        }
    
        def buildsExtensionsForClassExtensions() {
            ClassMetaData classMetaData = classMetaData()
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.5K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.verify-build-environment.gradle.kts

    tasks.register("verifyIsProductionBuildEnvironment") {
        doLast {
            val systemCharset = Charset.defaultCharset().name()
            assert(systemCharset == "UTF-8") {
                "Platform encoding must be UTF-8. Is currently $systemCharset. Set -Dfile.encoding=UTF-8"
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Feb 01 09:48:30 GMT 2021
    - 941 bytes
    - Viewed (0)
  3. .cm/plugins/filters/categorize/index.js

     * @example {{ owners | categorize(branch.diff.files_metadata) }}
     */
    
    function categorize(fileOwners, fileMetadatas) {
        const result = new Map();
        [...fileOwners.keys()].forEach(platform => {
            result.set(platform, {
                name: platform,
                files: []
            });
        });
    
        Object.values(fileMetadatas).forEach(fileMetadata => {
            [...fileOwners.keys()].forEach(platform => {
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithParameterizedTypes.java

    public class JavaClassWithParameterizedTypes {
        Set<CombinedInterface> getSetProp() { return null; }
    
        Map<CombinedInterface, JavaClassWithParameterizedTypes> getMapProp() { return null; }
    
        List<?> getWildcardProp() { return null; }
    
        List<? extends CombinedInterface> getUpperBoundProp() { return null; }
    
        List<? super CombinedInterface> getLowerBoundProp() { return null; }
    
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 622 bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/AbstractContextAwareRuleSpecification.groovy

    abstract class AbstractContextAwareRuleSpecification extends Specification {
        @TempDir
        File testDir
    
        ViolationCheckContext context = new ViolationCheckContext() {
            Map userData = [seenApiChanges: [] as Set]
    
            String getClassName() { return null }
    
            Map<String, ?> getUserData() { return userData }
    
            Object getUserData(String key) {
                return userData[key]
            }
    
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java

            this.replacement = replacement;
        }
    
        public void resolveTypes(Transformer<String, String> transformer) {
            for (int i = 0; i < annotationNames.size(); i++) {
                annotationNames.set(i, transformer.transform(annotationNames.get(i)));
            }
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/projects/CheckProject.kt

            )
            text(
                "reverse.dep.*.skip.build",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
                description = "Set to 'true' if you want to skip all dependency builds"
            )
        }
    
        var prevStage: Stage? = null
        val previousPerformanceTestPasses: MutableList<PerformanceTestsPass> = mutableListOf()
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 03:34:53 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. .cm/complex_changes.cm

        if:
          - {{ ('complex_changes' | isEnabledAutomation(pr)) }}
          - {{ branch | estimatedReviewTime >= 40 }}
          - {{ files | length >= 35 }}
          - {{ includes_src_changes }}
        run:
          - action: set-required-approvals@v1
            args:
              approvals: 2
    
    # To simplify the automations section, some calculations are placed under unique YAML keys defined here.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                DirectoryProperty generatedJavadocDirectory = objects.directoryProperty();
                generatedJavadocDirectory.set(layout.getBuildDirectory().dir("javadoc"));
                task.getOutputs().dir(generatedJavadocDirectory);
                task.getExtensions().getExtraProperties().set("destinationDirectory", generatedJavadocDirectory);
                // TODO: This breaks the provider
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Oct 16 13:03:20 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

                    configurations["${prefix}TestFullDistributionRuntimeClasspath"]
                } else {
                    configurations["${prefix}TestDistributionRuntimeClasspath"]
                }
            }
            // Set the base user home dir to be share by integration tests.
            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 28 20:40:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
Back to top