Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,290 for Warningf (0.17 sec)

  1. pkg/registry/core/pod/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (podStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	newPod := obj.(*api.Pod)
    	var warnings []string
    	if msgs := utilvalidation.IsDNS1123Label(newPod.Name); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. src/internal/coverage/pods/pods.go

    				fo := fileWithAnnotations{file: f, origin: idx, pid: pid}
    				v.elements = append(v.elements, fo)
    				mm[tag] = v
    			} else {
    				if warn {
    					warning("skipping orphaned counter file: %s", f)
    				}
    			}
    		}
    	}
    	if len(mm) == 0 {
    		if warn {
    			warning("no coverage data files found")
    		}
    		return nil
    	}
    	pods := make([]Pod, 0, len(mm))
    	for _, p := range mm {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

    import com.google.common.base.Preconditions;
    
    import java.util.List;
    import java.util.regex.Pattern;
    
    /**
     * Represents a deprecation warning message that is expected to be emitted by a test.
     * <p>
     * This class exists to support the detection of deprecation warnings that span multiple lines,
     * which may include the keyword "{@code deprecated}" multiple times.
     */
    public abstract class ExpectedDeprecationWarning {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter.go

    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/wellknown"
    )
    
    type (
    	Warning    = validation.Warning
    	Validation = validation.Validation
    )
    
    // ValidateEnvoyFilter checks envoy filter config supplied by user
    var ValidateEnvoyFilter = validation.RegisterValidateFunc("ValidateEnvoyFilter",
    	func(cfg config.Config) (Warning, error) {
    		errs := Validation{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                        myconf project(":b")
                    }
                }
            """
            settingsFile << """
                include 'a', 'b'
            """
            // Avoid missing project directory deprecation warnings
            testDirectory.file("a").mkdirs()
            testDirectory.file("b").mkdirs()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                assertThat("Has errors", richReport.errors.map { it.message }, CoreMatchers.equalTo(errors.toList()))
            }
    
            fun assertHasWarnings(vararg warnings: String) {
                assertThat("Has warnings", richReport.warnings.map { it.message }, CoreMatchers.equalTo(warnings.toList()))
            }
    
            fun assertHasInformation(vararg information: String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. hack/verify-shellcheck.sh

    if [ $res -eq 0 ]; then
      echo 'Congratulations! All shell files are passing lint :-)'
    else
      {
        echo
        echo 'Please review the above warnings. You can test via "./hack/verify-shellcheck.sh"'
        echo 'If the above warnings do not make sense, you can exempt this warning with a comment'
        echo ' (if your reviewer is okay with it).'
        echo 'In general please prefer to fix the error, we have already disabled specific lints'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

        def setup() {
            enableProblemsApiCheck()
        }
    
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits deprecation warnings as build operation progress events with context"() {
            when:
            settingsFile "rootProject.name = 'root'"
    
            initScript  """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

            Stream<String> messages = ValidationProblemSerialization.toPlainMessage(problems).sorted();
            if (problems.isEmpty()) {
                getLogger().info("Plugin validation finished without warnings.");
            } else {
                if (getFailOnWarning().get() || problems.stream().anyMatch(problem -> problem.getDefinition().getSeverity() == ERROR)) {
                    if (getIgnoreFailures().get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Tells whether to log warning messages. The default is {@code true}.
         */
        @Console
        public boolean isWarnings() {
            return warnings;
        }
    
        /**
         * Sets whether to log warning messages. The default is {@code true}.
         */
        public void setWarnings(boolean warnings) {
            this.warnings = warnings;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top