Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 155 for Messages (0.14 sec)

  1. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
      // An IPAddress must reference a parent object.
      // +required
      optional ParentReference parentRef = 1;
    }
    
    // ParentReference describes a reference to a parent object.
    message ParentReference {
      // Group is the group of the object being referenced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string reason = 5;
    
      // message is a human readable message indicating details about the transition.
      // This may be an empty string.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:MaxLength=32768
      optional string message = 6;
    }
    
    // CreateOptions may be provided when creating an API object.
    message CreateOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    message CSINode {
      // metadata.name must be the Kubernetes node name.
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec is the specification of CSINode
      optional CSINodeSpec spec = 2;
    }
    
    // CSINodeDriver holds information about the specification of one CSI driver installed on a node
    message CSINodeDriver {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/multicluster/service.go

    			for _, r := range clusterServices {
    				if r != nil {
    					serviceInstance = r
    					break
    				}
    			}
    			message := msg.NewMultiClusterInconsistentService(serviceInstance, fullname.Name.String(),
    				fullname.Namespace.String(), inconsistents, errors)
    
    			c.Report(gvk.Service, message)
    		}
    	}
    }
    
    func findInconsistencies(services map[cluster.ID]*resource.Instance) (clusters []string, errors string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. cni/pkg/log/uds_test.go

    			cniLog{
    				Level:     "info",
    				Time:      *wantT,
    				Msg:       "my message",
    				Arbitrary: nil,
    			},
    		},
    		{
    			"with keys",
    			`{"level":"info","time":"2020-01-01T00:00:00.356374Z","msg":"my message","key":"string value","bar":2}`,
    			cniLog{
    				Level: "info",
    				Time:  *wantT,
    				Msg:   "my message",
    				Arbitrary: map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/schema/validation_test.go

    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m1,
    				},
    			},
    		}
    		a.Analyze(ctx)
    		g.Expect(ctx.Reports).To(BeEmpty())
    	})
    
    	t.Run("SingleError", func(t *testing.T) {
    		g := NewWithT(t)
    
    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m2,
    					Origin:  fakeOrigin{},
    				},
    			},
    		}
    		a.Analyze(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1/generated.proto

      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
      // lastUpdateTime is the time of the last update to this condition
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastUpdateTime = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/config/resource/instance_test.go

    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    	"google.golang.org/protobuf/types/known/emptypb"
    )
    
    func TestInstance_IsEmpty_False(t *testing.T) {
    	g := NewWithT(t)
    
    	e := Instance{
    		Message: &emptypb.Empty{},
    	}
    
    	g.Expect(e.IsEmpty()).To(BeFalse())
    }
    
    func TestInstance_IsEmpty_True(t *testing.T) {
    	g := NewWithT(t)
    	e := Instance{}
    
    	g.Expect(e.IsEmpty()).To(BeTrue())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/coordination/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/coordination/v1";
    
    // Lease defines a lease concept.
    message Lease {
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/batch/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/batch/v1beta1";
    
    // CronJob represents the configuration of a single cron job.
    message CronJob {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top