Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for ignored (0.36 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt

                """
            ) {
    
                assertHasNoInformation()
                assertHasNoWarning()
                assertHasErrors(
    
                    // Kotlin file-facade classes are ignored by the @since rule
                    listOf("Class com.example.SourceKt: Is not annotated with @Incubating."),
    
                    added("Field", "cathedral"),
                    added("Method", "SourceKt.foo()"),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jul 11 06:57:51 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithInnerTypes.java

                InnerClass getOuter() { return null; }
            }
        }
    
        Sub2Interface getSomeProp() {
            // ignore classes in method bodies
            class IgnoreMe {}
    
            // ignore anonymous classes
            return new Sub2Interface() { };
        }
    
        // ignore anonymous classes
        final Runnable ignoreMe = new Runnable() {
            public void run() {
            }
        };
    
    Java
    - Registered: Wed Apr 10 11:36:10 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 876 bytes
    - Viewed (0)
  3. .github/codeql-config.yml

    ame: "Gradle CodeQL Configuration"
    
    paths-ignore:
      - "**/build/"
    Others
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Jan 22 21:41:32 GMT 2021
    - 75 bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ClassMetaDataUtil.java

            repository.each(new Action<ClassMetaData>() {
                @Override
                public void execute(ClassMetaData classMetaData) {
                    if (classMetaData.getOuterClassName() != null) {
                        // Ignore inner classes
                        return;
                    }
                    String packageName = classMetaData.getPackageName();
                    if (excludedPackages.contains(packageName)) {
                        return;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

        }
    
        def convertsLiteralTagsToText() {
            _ * classMetaData.rawCommentText >> '{@literal <b>markup</b> {@ignore}}'
    
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<para>&lt;b&gt;markup&lt;/b&gt; {@ignore}</para>'''
        }
    
        def doesNotInterpretContentsOfCodeTagAsHtml() {
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 14.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        // Note that Firefox is fine with a sort function returning any positive or negative number, but Chrome 
                        // requires 1 or -1 specifically and ignores higher or lower values.  This sort ought to remain consistent
                        // with the sort used by AbstractAcceptedApiChangesMaintenanceTask.
                        result.acceptedApiChanges.sort((a, b) => { 
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        else -> 10
    }
    
    fun configureTests() {
        normalization {
            runtimeClasspath {
                // Ignore the build receipt as it is not relevant for tests and changes between each execution
                ignore("org/gradle/build-receipt.properties")
            }
        }
    
        tasks.withType<Test>().configureEach {
    
            configureAndroidUserHome()
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  8. .cm/plugins/filters/byCodeowner/index.js

            });
    }
    
    function resolveCodeowners(mapping, file) {
        let match = mapping
            .slice()
            .reverse()
            .find(x =>
                ignore()
                    .add(x.path)
                    .ignores(file)
            );
        if (!match) {
            console.log("No codeowner found for: " + file);
            return ['No owner'];
        }
        return match.owners;
    }
    
    module.exports = {
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 19:12:32 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/StagePasses.kt

        buildTypes.forEach { buildType ->
            dependency(buildType.id!!) {
                snapshot {
                    if (!buildType.failStage) {
                        onDependencyFailure = FailureAction.IGNORE
                        onDependencyCancel = FailureAction.IGNORE
                    } else {
                        onDependencyFailure = FailureAction.ADD_PROBLEM
                        onDependencyCancel = FailureAction.FAIL_TO_START
                    }
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexerTest.groovy

            1 * visitor.onEndHtmlElement('p')
            1 * visitor.onEnd()
            0 * visitor._
        }
    
        def discardsHtmlComments() {
            when:
            lexer.pushText("<p><!-- ignore me --></p>text <!-- -->2")
            lexer.visit(visitor)
    
            then:
            1 * visitor.onStartHtmlElement('p')
            1 * visitor.onStartHtmlElementComplete('p')
            1 * visitor.onEndHtmlElement('p')
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6K bytes
    - Viewed (0)
Back to top