Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,117 for Warningf (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/create.go

    	// WarningsOnCreate returns warnings to the client performing a create.
    	// WarningsOnCreate is invoked after default fields in the object have been filled in
    	// and after Validate has passed, before Canonicalize is called, and the object is persisted.
    	// This method must not mutate the object.
    	//
    	// Be brief; limit warnings to 120 characters if possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kube/adapter.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.
    	Warnings []string `json:"warnings,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 10 16:40:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    	// WarningsOnUpdate returns warnings to the client performing the update.
    	// WarningsOnUpdate is invoked after default fields in the object have been filled in
    	// and after ValidateUpdate has passed, before Canonicalize is called, and before the object is persisted.
    	// This method must not mutate either object.
    	//
    	// Be brief; limit warnings to 120 characters if possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top