Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,117 for Warningf (0.13 sec)

  1. istioctl/pkg/validate/validate.go

    ) (validation.Warning, error) {
    	decoder := yaml.NewDecoder(reader)
    	decoder.SetStrict(true)
    	var errs error
    	var warnings validation.Warning
    	for {
    		// YAML allows non-string keys and the produces generic keys for nested fields
    		raw := make(map[any]any)
    		err := decoder.Decode(&raw)
    		if err == io.EOF {
    			return warnings, errs
    		}
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/build.sample.conf.template

    commands: [{
        executable: gradle
        args: build
        # We temporarily disable deprecation warnings until we can update the gradle/gradle wrapper
        # to the new version where projects created with build-init do not emit warnings.
        flags: "--warning-mode=none"
        expected-output-file: build.out
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

        protected void generateReportFor(ProjectDetails project, PropertyReportModel model) {
            for (PropertyWarning warning : model.warnings) {
                getLogger().warn(
                    "Rendering of the property '{}' with value type '{}' failed with exception",
                    warning.name, warning.valueClass, warning.exception
                );
            }
            for (Pair<String, String> entry : model.properties) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    }
    
    // simple recorder that only appends warning
    type recorder struct {
    	mu       sync.Mutex
    	warnings []*cacheWarning
    }
    
    // AddWarning adds a warning to recorder.
    func (r *recorder) AddWarning(agent, text string) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	r.warnings = append(r.warnings, &cacheWarning{agent: agent, text: text})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationLoggerTest.groovy

            events[0].message == """
    Deprecated Gradle features were used in this build, making it incompatible with ${DefaultGradleVersion.current().nextMajorVersion}.
    
    You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
    
    ${documentationReference}"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:06:10 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: This sample exists to demonstrate them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 140 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/android-application/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Android plugin 7.3.0 uses a deprecated Report.setDestination
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 160 bytes
    - Viewed (0)
Back to top