The dot product (or inner product) of a tensor T and a vector a produces a vector b = T . a:
$$ b_i = T_{ij}a_j = \begin{pmatrix} T_{11} a_1 + T_{12} a_2 + T_{13} a_3\\ T_{21} a_1 + T_{22} a_2 + T_{23} a_3\\ T_{31} a_1 + T_{32} a_2 + T_{33} a_3 \end{pmatrix} $$
The operation is non-commutative if T is non-symmetric, hence for an arbitrary vector $\mathbf{c}$, $$\mathbf{c} = \mathbf{a} \cdot \mathbf{T} = \mathbf{T}^\mathrm{T} \cdot \mathbf{a} $$
I have seen the use of this operation in calculations of viscous forces on a body within the computational fluid dynamics context.
The meaning of the dot product of two vectors has been well explained below:
- What does the dot product of two vectors represent?
- What is physical interpretation of dot product? [duplicate]
But, what is the meaning of the dot product of a tensor and a vector, if there is any?