En ligne et hors-ligne

Multi tool use

« Offline » redirige ici. Pour les autres significations, voir Offline (homonymie).
Cet article est une ébauche concernant l’informatique.
Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants.
En général, un système (ordinateur, réseau) et par extension son utilisation ou ce qu'il contient, est dit en ligne s'il est connecté à un autre réseau ou système (au moyen d'une « ligne » de communication, bien que ce ne soit pas toujours le moyen ; c'est comme « être au téléphone »). Diverses significations plus spécifiques existent :
- En langage courant, le réseau est en général Internet si bien que « en ligne » décrit un service, une information accessible par Internet ou l'état d'un ordinateur et le fait que son utilisateur y soit connecté, etc. ;
- L'utilisation de services internet (tels que la lecture et rédaction de courriels) est dite « en ligne » si elle nécessite une connexion (cas de la messagerie web) ou par opposition « hors ligne » si, entre d'éventuels brefs échanges de données en ligne (un courriel par exemple), un programme (client de messagerie) est capable de réaliser ce service de manière locale et autonome sans être constamment connecté à un serveur externe.
Portion de texte anglais à traduire en français
Texte anglais à traduire :
- In a system for the performance of a particular task, an element of the system is said to be online if it is operational. For instance, a power plant is online if it is supplying power to the power grid. Alternatively, a section of road may be said to be online if it is open to traffic.
- In telecommunication, the term has another very specific meaning. A device associated with a larger system is online if it is under the direct control of the system. It it is available for immediate use by the system, on demand, without human intervention, but may not be operated independently of the system.
Traduire ce texte • Outils • (+)
Références |
Federal Standard 1037C (en)
MIL-STD-188 (en)
Lien externe |
(en) « NetLingo: dictionnaire de terminologie de l'Internet : online », sur www.netlingo.com (consulté le 13 mai 2017).
Portail des télécommunications
UbpST2 e63m5g2vA6d2UhUcmCVHQ,6 aDWSEky,e6vyeoGy0LA b 8l8M9mC03XkHL8ie
Popular posts from this blog
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...