Find the word definition

Wiktionary
namespace

n. (context computing English) A conceptual space that groups classes, identifiers, etc. to avoid conflicts with items in unrelated code that have the same names. vb. (context computing English) To categorize by placing into a namespace.

Wikipedia
Namespace

In computing, a namespace is a set of symbols that are used to organize objects of various kinds, so that these objects may be referred to by name. Prominent examples include:

Namespaces are commonly structured as hierarchies to allow reuse of names in different contexts. As an analogy, consider a system of naming of people where each person has a proper name, as well as a family name shared with their relatives. If, in each family, the names of family members are unique, then each person can be uniquely identified by the combination of first name and family name; there is only one Jane Doe, though there may be many Janes. Within the namespace of the Doe family, just "Jane" suffices to unambiguously designate this person, while within the "global" namespace of all people, the full name must be used.

In a similar way, hierarchical file systems organize files in directories. Each directory is a separate namespace, so that the directories "letters" and "invoices" may both contain a file "to_jane".

In computer programming, namespaces are typically employed for the purpose of grouping symbols and identifiers around a particular functionality and to avoid name collisions between multiple identifiers that share the same name.

In networking, the Domain Name System organizes websites (and other resources) into namespaces. For example, " org" is a namespace for non-profit organizations, "wikipedia.org" is a sub-namespace assigned to the Wikimedia Foundation, and "en.wikipedia.org" is the name of the English-language Wikipedia within this space.