Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for Messages (0.11 sec)

  1. pkg/config/model.go

    }
    
    // Config is a configuration unit consisting of the type of configuration, the
    // key identifier that is unique per type, and the content represented as a
    // protobuf message.
    type Config struct {
    	Meta
    
    	// Spec holds the configuration object as a gogo protobuf message
    	Spec Spec
    
    	// Status holds long-running status.
    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K 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. 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)
  5. pkg/test/echo/proto/echo.pb.go

    }
    
    func (x *EchoRequest) GetMessage() string {
    	if x != nil {
    		return x.Message
    	}
    	return ""
    }
    
    type EchoResponse struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
    }
    
    func (x *EchoResponse) Reset() {
    	*x = EchoResponse{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. pilot/test/xdstest/extract.go

    	}
    	return res
    }
    
    func SilentlyUnmarshalAny[T any](a *anypb.Any) *T {
    	dst := any(new(T)).(proto.Message)
    	if err := a.UnmarshalTo(dst); err != nil {
    		var z *T
    		return z
    	}
    	return any(dst).(*T)
    }
    
    func UnmarshalAny[T any](t test.Failer, a *anypb.Any) *T {
    	dst := any(new(T)).(proto.Message)
    	if err := a.UnmarshalTo(dst); err != nil {
    		t.Fatalf("failed to unmarshal to %T: %v", dst, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. cni/pkg/repair/repaircontroller.go

    func (c *Controller) matchesFilter(pod *corev1.Pod) bool {
    	// Helper function; checks that a container's termination message matches filter
    	matchTerminationMessage := func(state *corev1.ContainerStateTerminated) bool {
    		// If we are filtering on init container termination message and the termination message of 'state' does not match, exit
    		trimmedTerminationMessage := strings.TrimSpace(c.cfg.InitTerminationMsg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver.go

    			return nil, err
    		}
    
    		if resp.StatusCode < 200 || resp.StatusCode >= 300 {
    			message := strconv.Quote(string(body))
    			if len(message) > 100 {
    				message = message[:100]
    				return nil, fmt.Errorf("status %d, message %s(truncated)", resp.StatusCode, message)
    			}
    			return nil, fmt.Errorf("status %d, message %s", resp.StatusCode, message)
    		}
    
    		return body, nil
    	}
    
    	for i := 0; i < retry; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pilot/pkg/credentials/kube/secrets.go

    		ret.Key = scrt.Data[TLSSecretKey]
    		ret.Staple = scrt.Data[TLSSecretOcspStaple]
    		ret.CRL = scrt.Data[TLSSecretCrl]
    		return ret, nil
    	}
    	// No cert found. Try to generate a helpful error message
    	if hasKeys(scrt.Data, GenericScrtCert, GenericScrtKey) {
    		return nil, fmt.Errorf("found keys %q and %q, but they were empty", GenericScrtCert, GenericScrtKey)
    	}
    	if hasKeys(scrt.Data, TLSSecretCert, TLSSecretKey) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/dns/proto/nds.pb.go

    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *NameTable) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*NameTable) ProtoMessage() {}
    
    func (x *NameTable) ProtoReflect() protoreflect.Message {
    	mi := &file_dns_proto_nds_proto_msgTypes[0]
    	if protoimpl.UnsafeEnabled && x != nil {
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		if ms.LoadMessageInfo() == nil {
    			ms.StoreMessageInfo(mi)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top