Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Warningf (0.54 sec)

  1. CHANGELOG/CHANGELOG-1.25.md

    - Graduated ServerSideFieldValidation to `beta`. Schema validation is performed server-side and requests will receive warnings for any invalid/unknown fields by default. ([#110178](https://github.com/kubernetes/kubernetes/pull/110178), [@kevindelgado](https://github.com/kevindelgado)) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.29.md

    - Kubeadm: fix a bug when using external CA mode and trying to upgrade to 1.29 using "kubeadm upgrade apply". Show a warning that kubeadm cannot sign the new "super-admin.conf" as the host does not have a CA and show some instructions on how to manually migrate to the separate "admin.conf" and "super-admin.conf" kubeconfig files. ([#124682](https://github.com/kubernete...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    const (
    	// Information only and will not cause any problems
    	EventTypeNormal string = "Normal"
    	// These events are to warn that something might go wrong
    	EventTypeWarning string = "Warning"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Event is a report of an event somewhere in the cluster.  Events
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	IncludeIPRanges string `protobuf:"bytes,16,opt,name=includeIPRanges,proto3" json:"includeIPRanges,omitempty"`
    	// Log level for proxy, applies to gateways and sidecars. If left empty, "warning" is used. Expected values are: trace\|debug\|info\|warning\|error\|critical\|off
    	LogLevel string `protobuf:"bytes,18,opt,name=logLevel,proto3" json:"logLevel,omitempty"`
    	// Path to the file to which the proxy will write outlier detection logs.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    const (
    	// Information only and will not cause any problems
    	EventTypeNormal string = "Normal"
    	// These events are to warn that something might go wrong
    	EventTypeWarning string = "Warning"
    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"lastTimestamp":      "The time at which the most recent occurrence of this event was recorded.",
    	"count":              "The number of times this event has occurred.",
    	"type":               "Type of this event (Normal, Warning), new types could be added in the future",
    	"eventTime":          "Time when this Event was first observed.",
    	"series":             "Data about the Event series this event represents or nil if it's a singleton Event.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //   2. With chlo legalization enabled, verifying diagnostics to pick up any
    //      issues with the full lowering (can catch some broadcasting corner
    //      cases which emit with a warning).
    
    //===----------------------------------------------------------------------===//
    // BatchNorm op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTimestamp = 7;
    
      // The number of times this event has occurred.
      // +optional
      optional int32 count = 8;
    
      // Type of this event (Normal, Warning), new types could be added in the future
      // +optional
      optional string type = 9;
    
      // Time when this Event was first observed.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    func (e *ssafn) Fatalf(pos src.XPos, msg string, args ...interface{}) {
    	base.Pos = pos
    	nargs := append([]interface{}{ir.FuncName(e.curfn)}, args...)
    	base.Fatalf("'%s': "+msg, nargs...)
    }
    
    // Warnl reports a "warning", which is usually flag-triggered
    // logging output for the benefit of tests.
    func (e *ssafn) Warnl(pos src.XPos, fmt_ string, args ...interface{}) {
    	base.WarnfAt(pos, fmt_, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top