Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 2,290 for Warningf (0.12 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.26
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  2. src/cmd/covdata/covdata.go

    	if *verbflag >= vlevel {
    		fmt.Printf(s, a...)
    		fmt.Printf("\n")
    	}
    }
    
    func warn(s string, a ...interface{}) {
    	fmt.Fprintf(os.Stderr, "warning: ")
    	fmt.Fprintf(os.Stderr, s, a...)
    	fmt.Fprintf(os.Stderr, "\n")
    	if *hwflag {
    		panic("unexpected warning")
    	}
    }
    
    func fatal(s string, a ...interface{}) {
    	fmt.Fprintf(os.Stderr, "error: ")
    	fmt.Fprintf(os.Stderr, s, a...)
    	fmt.Fprintf(os.Stderr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

        /**
         * Silences the compatibility warnings for the Maven publication for the specified variant.
         *
         * Warnings are emitted when Gradle features are used that cannot be mapped completely to Maven POM.
         *
         * @param variantName the variant to silence warning for
         *
         * @since 6.0
         */
        void suppressPomMetadataWarningsFor(String variantName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. pkg/webhooks/validation/server/server.go

    		reportValidationFailed(request, reason, isDryRun)
    		return toAdmissionResponse(err)
    	}
    
    	reportValidationPass(request)
    	return &kube.AdmissionResponse{Allowed: true, Warnings: toKubeWarnings(warnings)}
    }
    
    func toKubeWarnings(warn validation.Warning) []string {
    	if warn == nil {
    		return nil
    	}
    	me, ok := warn.(*multierror.Error)
    	if ok {
    		res := []string{}
    		for _, e := range me.Errors {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. hack/verify-golangci-lint.sh

    else
      {
        echo
        echo "Please review the above warnings. You can test via \"${invocation[*]}\""
        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).'
        if [ "$strict" ]; then
            echo
            echo 'golangci-strict.yaml was used as configuration. Warnings must be fixed in'
            echo 'new or modified code.'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingConfigurationBuildOptions.java

            public static final String LONG_OPTION = "warning-mode";
            public static final String GRADLE_PROPERTY = "org.gradle.warning.mode";
    
            public WarningsOption() {
                super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create(LONG_OPTION, "Specifies which mode of warnings to generate. Values are 'all', 'fail', 'summary'(default) or 'none'"));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

            "dependencyScope('conf') { }"  | 'Dependency Scope'
    
        }
        // endregion Role-Based Configurations
    
        // region Warnings
        def "changing usage for configuration #configuration produces warnings"() {
            given: "a buildscript which attempts to change a configuration's usage"
            buildFile << """
                plugins {
                    id 'java-library'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

        }
    
        public void reportSuppressedDeprecations() {
            if (warningMode == WarningMode.Summary && deprecationsFound) {
                LOGGER.warn("\n{} {}.\n\nYou can use '--{} {}' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.\n\n{}",
                    WARNING_SUMMARY, DefaultGradleVersion.current().getNextMajorVersion().getVersion(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

        /**
         * Silences the compatibility warnings for the Ivy publication for the specified variant.
         *
         * Warnings are emitted when Gradle features are used that cannot be mapped completely to Ivy xml.
         *
         * @param variantName the variant to silence warning for
         *
         * @since 6.0
         */
        void suppressIvyMetadataWarningsFor(String variantName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

    \t(Run with --stacktrace to get the full stack trace of this deprecation warning.)""")
            events[1].message == TextUtil.toPlatformLineSeparators("""feature1 removal
    \tat some.KotlinGradleScript.foo(GradleScript.gradle.kts:7)
    \t(Run with --stacktrace to get the full stack trace of this deprecation warning.)""")
    
            where:
            fakeStackTrace1 = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top