Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,290 for Warningf (0.32 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/sourceSetConvention/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: help -q
        # Do not fail on deprecation warnings, this snippet demonstrate using deprecated conventions
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Android plugin 7.3.0 uses a deprecated Report.setDestination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 160 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/warning/context.go

    limitations under the License.
    */
    
    package warning
    
    import (
    	"context"
    )
    
    // The key type is unexported to prevent collisions
    type key int
    
    const (
    	// warningRecorderKey is the context key for the warning recorder.
    	warningRecorderKey key = iota
    )
    
    // Recorder provides a method for recording warnings
    type Recorder interface {
    	// AddWarning adds the specified warning to the response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 24 16:37:53 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/crossCompilation/tests/java7CrossCompilation.sample.conf

    executable: gradle
    args: build
    # Do not fail for deprecation warnings: Testing with java 7
    flags: "-PtargetJavaVersion=1.7 --warning-mode=all"
    expected-output-file: java7CrossCompilation.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 221 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/signing/configurations/tests/signingRuntimeElementsOutput.sample.conf

    # tag::cli[]
    # gradle signArchives
    # end::cli[]
    executable: gradle
    args: signRuntimeElements
    # Do not fail for deprecation warnings: deprecated Maven plugin
    flags: "--warning-mode=none"
    expected-output-file: signingRuntimeElementsOutput.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 271 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: test
        expected-output-file: testTask.out
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

        val errors: List<ReportMessage>,
        val warnings: List<ReportMessage>,
        val information: List<ReportMessage>,
        val accepted: List<ReportMessage>
    ) {
    
        val isEmpty: Boolean
            get() = errors.isEmpty() && warnings.isEmpty() && information.isEmpty()
    
        fun toText() =
            StringBuilder("Binary compatibility\n").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                    expectedDeprecationWarnings.stream()
                        .map(warning -> " - " + warning)
                        .collect(joining("\n"))));
            }
            if (expectedGenericDeprecationWarnings > 0) {
                throw new AssertionError(String.format("Expected %d more deprecation warnings", expectedGenericDeprecationWarnings));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top