Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 760 for Warningf (0.14 sec)

  1. cmd/kube-controller-manager/app/core.go

    		return nil, false, nil
    	}
    	if controllerContext.Cloud == nil {
    		logger.Info("Warning: configure-cloud-routes is set, but no cloud provider specified. Will not configure cloud provider routes.")
    		return nil, false, nil
    	}
    	routes, ok := controllerContext.Cloud.Routes()
    	if !ok {
    		logger.Info("Warning: configure-cloud-routes is set, but cloud provider does not support routes. Will not configure cloud provider routes.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	var resourceInfos []*storageversion.ResourceInfo
    	for _, groupVersion := range apiGroupInfo.PrioritizedVersions {
    		if len(apiGroupInfo.VersionedResourcesStorageMap[groupVersion.Version]) == 0 {
    			klog.Warningf("Skipping API %v because it has no resources.", groupVersion)
    			continue
    		}
    
    		apiGroupVersion, err := s.getAPIGroupVersion(apiGroupInfo, groupVersion, apiPrefix)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings.go

    		if v.PhotonPersistentDisk != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11, non-functional in v1.16+", fieldPath.Child("spec", "volumes").Index(i).Child("photonPersistentDisk")))
    		}
    		if v.GitRepo != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11", fieldPath.Child("spec", "volumes").Index(i).Child("gitRepo")))
    		}
    		if v.ScaleIO != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            }
            verifyAll(receivedProblem(1)) {
                assertProblem(it, "WARNING", true)
                fqid == 'compilation:java:java-compilation-warning'
                details == 'redundant cast to java.lang.String'
            }
    
            result.error.contains("2 warnings\n")
        }
    
        def "problems are received when a multi-file warning happens"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         *
         * Does not fail the test if the warning does not appear in the output.
         *
         * WARNING: Only use for warnings that occurs intermittently. For example a deprecation warning for a function
         * that is only called once per Gradle daemon from a third party plugin.
         *
         * @param condition only expect the warning to be produced when this condition is {@code true}.
         * @param warning the text of the warning to match.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecationHandlingIntegrationTest.groovy

            'with stacktrace and --warning-mode=all'        | WarningMode.All     | 5             | false           | true
            'without stacktrace and --warning-mode=no'      | WarningMode.None    | 0             | false           | false
            'with stacktrace and --warning-mode=no'         | WarningMode.None    | 0             | false           | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:16:32 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top