Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,290 for Warningf (0.12 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. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/deprecation_test.go

    				t.Fatal(err)
    			}
    			if !reflect.DeepEqual(handler.warnings, tc.want) {
    				t.Errorf("expected %v, got %v", tc.want, handler.warnings)
    			}
    		})
    	}
    }
    
    type warningHandler struct {
    	warnings []string
    }
    
    func (w *warningHandler) HandleWarningHeader(code int, agent string, text string) {
    	w.warnings = append(w.warnings, text)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 24 22:06:09 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/vs-ineffective-warning.yaml

    Ed Snible <******@****.***> 1617392388 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 02 19:39:48 UTC 2021
    - 207 bytes
    - Viewed (0)
Back to top