Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for Warningf (0.21 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    
    		statusScopes[v.Name] = &statusScope
    
    		if v.Deprecated {
    			deprecated[v.Name] = true
    			if v.DeprecationWarning != nil {
    				warnings[v.Name] = append(warnings[v.Name], *v.DeprecationWarning)
    			} else {
    				warnings[v.Name] = append(warnings[v.Name], defaultDeprecationWarning(v.Name, crd.Spec))
    			}
    		}
    	}
    
    	ret := &crdInfo{
    		spec:                &crd.Spec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// also watchers that have had already its draining strategy set
    	// are no longer available (they were removed from the allWatchers and the valueWatchers maps)
    	if len(i.allWatchers) > 0 || len(i.valueWatchers) > 0 {
    		klog.Warningf("Terminating all watchers from cacher %v", groupResource)
    	}
    	for _, watchers := range i.allWatchers {
    		watchers.terminateAll(done)
    	}
    	for _, watchers := range i.valueWatchers {
    		watchers.terminateAll(done)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    and no warnings will be produced if they are used, but they will be deprecated and removed in a future release.
    
    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    						mismatchNotes = append(mismatchNotes, fmt.Sprintf("Warning: Route to subset %s but NO DESTINATION RULE defining subsets!", dest.Destination.Subset))
    					} else {
    						// Don't bother giving the match conditions, the problem is that there are unknowns in the VirtualService
    						mismatchNotes = append(mismatchNotes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/registry/core/pod/strategy_test.go

    		t.Run(test.description, func(t *testing.T) {
    			warnings := &warningRecorder{}
    			ctx := warning.WithWarningRecorder(context.Background(), warnings)
    			applyAppArmorVersionSkew(ctx, test.pod)
    			test.validation(t, test.pod)
    
    			if test.expectWarning {
    				if assert.NotEmpty(t, warnings.warnings, "expect warnings") {
    					assert.Contains(t, warnings.warnings[0], `deprecated since v1.30; use the "appArmorProfile" field instead`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	//
    	// "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 Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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.28
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			if err != nil {
    				return nil, nil, err
    			}
    			kind = fqParentKind.Kind
    		}
    
    		verbOverrider, needOverride := storage.(StorageMetricsOverride)
    
    		// accumulate endpoint-level warnings
    		var (
    			warnings       []string
    			deprecated     bool
    			removedRelease string
    		)
    
    		{
    			versionedPtrWithGVK := versionedPtr.DeepCopyObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top