Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 649 for Warningf (0.14 sec)

  1. cmd/kubeadm/app/preflight/checks_test.go

    			warnings, errors := check.Check()
    
    			switch {
    			case warnings != nil && !tc.expectWarnings:
    				t.Errorf("KubeletVersionCheck: unexpected warnings for kubelet version %q and Kubernetes version %q. Warnings: %v", tc.kubeletVersion, tc.k8sVersion, warnings)
    			case warnings == nil && tc.expectWarnings:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/storage/storage_test.go

    		},
    		{
    			description:   "deletion: orphan deletion, no warnings",
    			expectWarning: false,
    			deleteOptions: &metav1.DeleteOptions{PropagationPolicy: &orphanDeletionPropagation},
    			requestInfo:   &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1"},
    		},
    		{
    			description:   "deletion: background deletion, no warnings",
    			expectWarning: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. pkg/controller/validatingadmissionpolicystatus/controller.go

    		return nil
    	}
    	warnings := c.typeChecker.Check(policy)
    	warningsConfig := make([]*admissionregistrationv1apply.ExpressionWarningApplyConfiguration, 0, len(warnings))
    	for _, warning := range warnings {
    		warningsConfig = append(warningsConfig, admissionregistrationv1apply.ExpressionWarning().
    			WithFieldRef(warning.FieldRef).
    			WithWarning(warning.Warning))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ProjectStateLockingCrossVersionTest.groovy

        def "does not emit deprecation warnings when idea model builder resolves a configuration"() {
            singleProjectBuildInRootFolder("root") {
                buildFile << """
                    apply plugin: 'java'
                """
            }
    
            when:
            withConnection {
                def executer = action(new FetchIdeaProject())
                executer.withArguments("--warning-mode", "all")
                collectOutputs(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

                .forEach(problem -> {
                    // Because our deprecation warning system doesn't support multiline strings (bummer!) both in rendering
                    // **and** testing (no way to capture multiline deprecation warnings), we have to resort to removing details
                    // and rendering
                    String warning = convertToSingleLine(renderMinimalInformationAbout(problem, false, false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                    break;
                case WARNING:
                case MANDATORY_WARNING:
                    warningCount++;
                    break;
                default:
                    break;
            }
    
            problemReporter.reporting(spec -> buildProblem(diagnostic, spec));
        }
    
        /**
         * This method is responsible for printing the number of errors and warnings after writing the diagnostics out to the console.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                        mapping(identity(), toImmutableList())));
            List<Problem> warnings = problemsMap.getOrDefault(WARNING, ImmutableList.of());
            List<Problem> errors = problemsMap.getOrDefault(ERROR, ImmutableList.of());
    
            if (!warnings.isEmpty()) {
                warningReporter.recordValidationWarnings(work, warnings);
            }
    
            if (!errors.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top