Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,682 for Warningf (0.6 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-imperative/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)
  2. pkg/config/analysis/analyzers/schema/validation_test.go

    	"istio.io/istio/pkg/config/validation"
    )
    
    func TestCorrectArgs(t *testing.T) {
    	g := NewWithT(t)
    
    	m1 := &v1alpha3.VirtualService{}
    
    	testSchema := schemaWithValidateFn(func(cfg config.Config) (warnings validation.Warning, errs error) {
    		g.Expect(cfg.Name).To(Equal("name"))
    		g.Expect(cfg.Namespace).To(Equal("ns"))
    		g.Expect(cfg.Spec).To(Equal(m1))
    		return nil, nil
    	})
    	ctx := &fixtures.Context{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    warnings << "Return nullability changed from nullable to non-nullable"
                }
            }
    
            if (!errors.isEmpty()) {
                def changes = errors + warnings
                return acceptOrReject(member, changes, Violation.error(member, changes.join(" ")))
            }
            if (!warnings.isEmpty()) {
                return Violation.warning(member, warnings.join(" "))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java

        private String logDeprecatedMojo(MojoDescriptor mojoDescriptor) {
            return messageBuilderFactory
                    .builder()
                    .warning("Goal '")
                    .warning(mojoDescriptor.getGoal())
                    .warning("' is deprecated: ")
                    .warning(mojoDescriptor.getDeprecated())
                    .toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    		}
    		for i, w := range warnings {
    			if !strings.Contains(w.Warning, substring) {
    				t.Errorf("warning %d does not contain %q, got %v", i, substring, w)
    			}
    		}
    	}
    }
    
    func toHaveLengthOf(expected int) func(warnings []v1.ExpressionWarning, t *testing.T) {
    	return func(warnings []v1.ExpressionWarning, t *testing.T) {
    		got := len(warnings)
    		if expected != got {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

                contextualLabel == "registration of listener on 'Gradle.buildFinished' is unsupported"
                definition.severity == Severity.WARNING
                definition.documentationLink != null
            }
        }
    
        def "max problems are still reported as warnings"() {
            given:
            buildFile """
                gradle.buildFinished { }
    
                task run
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            ! output.contains(INVALID_DESCRIPTOR_WARNING_PREFIX)
        }
    
        def "jar issues warning if built jar does not contain any plugin descriptors" () {
            given:
            buildFile()
            goodPlugin()
    
            expect:
            succeeds "jar"
            output.contains(NO_DESCRIPTOR_WARNING)
        }
    
        def "jar issues warning if built jar does not contain declared plugin" () {
            given:
            buildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Expects the given deprecation warning, allowing to pass documentation url with /current/ version and asserting against the actual current version instead.
         */
        default GradleExecuter expectDocumentedDeprecationWarning(String warning) {
            return expectDeprecationWarning(normalizeDocumentationLink(warning));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admission/v1/types.go

    	// warnings is a list of warning messages to return to the requesting API client.
    	// Warning messages describe a problem the client making the API request should correct or be aware of.
    	// Limit warnings to 120 characters if possible.
    	// Warnings over 256 characters and large numbers of warnings may be truncated.
    	// +optional
    	Warnings []string `json:"warnings,omitempty" protobuf:"bytes,7,rep,name=warnings"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code
        // For example, external JMH plugin generates code that produces compiler warnings
        if (!name.contains("CompileGeneratedClasses")) {
            options.compilerArgs.addAll(strictCompilerArgs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top