Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 2,290 for Warningf (0.14 sec)

  1. pkg/api/persistentvolume/util.go

    	}
    	if pvSpec.ScaleIO != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.16, non-functional in v1.22+", fieldPath.Child("spec", "scaleIO")))
    	}
    	if pvSpec.StorageOS != nil {
    		warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.22, non-functional in v1.25+", fieldPath.Child("spec", "storageOS")))
    	}
    	if pvSpec.Glusterfs != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 09:50:37 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/logging/testdata/logging.txt

      admin: warning
      aws: warning
      assert: warning
      backtrace: warning
      client: warning
      config: warning
      connection: warning
      dubbo: warning
      file: warning
      filter: warning
      forward_proxy: warning
      grpc: warning
      hc: warning
      health_checker: warning
      http: warning
      http2: warning
      hystrix: warning
      init: warning
      io: warning
      jwt: warning
      kafka: warning
      lua: warning
      main: warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 02 13:47:26 UTC 2019
    - 715 bytes
    - Viewed (0)
  3. tests/test_generate_unique_id_function.py

            return item1  # pragma: nocover
    
        client = TestClient(app)
        with warnings.catch_warnings(record=True) as w:
            warnings.simplefilter("always")
            client.get("/openapi.json")
            assert len(w) >= 2
            duplicate_warnings = [
                warning for warning in w if issubclass(warning.category, UserWarning)
            ]
            assert len(duplicate_warnings) > 0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

            private final VariantWarningCollector warnings;
    
            public VariantDependencyFactory(
                VariantDependencyResolver dependencyResolver,
                VariantWarningCollector warnings
            ) {
                this.dependencyResolver = dependencyResolver;
                this.warnings = warnings;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (1)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

                assert variants[0].name == "apiElements"
                assert variants[0].dependencies*.coords == ["org:foo:1.0"]
            }
        }
    
        def "can ignore all publication warnings by variant name"() {
            given:
            def silenceMethod = "suppressPomMetadataWarningsFor"
            createBuildScripts("""
    
                configurations.api.outgoing.capability 'org:foo:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Before Java 16, new build warnings are shown.
    These new warnings are printed to stderr and will not fail the build:
    ```
    WARNING: An illegal reflective access operation has occurred
    WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.ReflectUtils$2 (file:/.../testng-5.12.1.jar) to <method>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationWarningsCollector.java

                treeFormatter.node(header + " warnings (silence with '" + disableMethod + "(variant)')");
                treeFormatter.startChildren();
                variantToWarnings.forEach((key, warnings) -> {
                    treeFormatter.node("Variant " + key + ":");
                    treeFormatter.startChildren();
                    if (warnings.getVariantUnsupported() != null) {
                        warnings.getVariantUnsupported().forEach(treeFormatter::node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //
      // "Deny" specifies that a validation failure results in a denied request.
      //
      // "Warn" specifies that a validation failure is reported to the request client
      // in HTTP Warning headers, with a warning code of 299. Warnings can be sent
      // both for allowed or denied admission responses.
      //
      // "Audit" specifies that a validation failure is included in the published
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. cmd/server-main.go

    	if oldLinux() {
    		warnings = append(warnings, color.YellowBold("- Detected Linux kernel version older than 4.0.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x.x linux kernel version for best performance"))
    	}
    
    	maxProcs := runtime.GOMAXPROCS(0)
    	cpuProcs := runtime.NumCPU()
    	if maxProcs < cpuProcs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (3)
  10. pkg/registry/batch/cronjob/strategy.go

    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (cronJobStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	newCronJob := obj.(*batch.CronJob)
    	var warnings []string
    	if msgs := utilvalidation.IsDNS1123Label(newCronJob.Name); len(msgs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top