const google.golang.org/grpc/codes.Unimplemented

16 uses

	google.golang.org/grpc/codes (current package)
		code_string.go#L57: 	case Unimplemented:
		code_string.go#L98: 	case Unimplemented:
		codes.go#L166: 	Unimplemented Code = 12
		codes.go#L217: 	`"UNIMPLEMENTED"`:       Unimplemented,

	google.golang.org/grpc
		clientconn.go#L1508: 			if status.Code(err) == codes.Unimplemented {
		rpc_util.go#L821: 				return status.Newf(codes.Unimplemented, "grpc: Decompressor is not installed for grpc-encoding %q", recvCompress)
		server.go#L1354: 			st := status.Newf(codes.Unimplemented, "grpc: Decompressor is not installed for grpc-encoding %q", rc)
		server.go#L1684: 			st := status.Newf(codes.Unimplemented, "grpc: Decompressor is not installed for grpc-encoding %q", rc)
		server.go#L1805: 		if err := stream.WriteStatus(status.New(codes.Unimplemented, errDesc)); err != nil {
		server.go#L1865: 	if err := stream.WriteStatus(status.New(codes.Unimplemented, errDesc)); err != nil {

	google.golang.org/grpc/health
		client.go#L97: 			if status.Code(err) == codes.Unimplemented {
		producer.go#L101: 	if status.Code(err) == codes.Unimplemented {

	google.golang.org/grpc/health/grpc_health_v1
		health_grpc.pb.go#L191: 	return nil, status.Error(codes.Unimplemented, "method Check not implemented")
		health_grpc.pb.go#L194: 	return nil, status.Error(codes.Unimplemented, "method List not implemented")
		health_grpc.pb.go#L197: 	return status.Error(codes.Unimplemented, "method Watch not implemented")

	google.golang.org/grpc/internal/transport
		http_util.go#L76: 		http.StatusNotFound: codes.Unimplemented,