1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
|
@c -*-texinfo-*-
@c This is part of the GNU edition of V.E.R.A.
@c Copyright (C) 1993/2014 Oliver Heidelbach
@c See the file vera.texi for copying conditions.
@c
@c Syntax:
@c ACRONYM
@c Expansion[ (Reference)][, "Style"]
@c Additional explanations are included in [square brackets]
@table @asis
@item GA
General Availability (OS/2)
@item GA
Genetic Algorithm(s)
@item GAA
General Application Area (CD-MRW)
@item GABELN
Gruppe Area Brett Echo Liste Newsgroup (slang, Usenet, BBS)
@item GABRIEL
GAteway and BRIdge to Europe's national Libraries, http://www.ddb.de/gabriel
@item GAC
Global Assembly Cache (MS, .NET)
@item GAC
Government Advisory Council (ICANN)
@item GADK
Global Application Developers Kit (Sun)
@item GAE
Generic Application Environment
@item GAEB
Gemeinsamer Ausschuss fuer Elektronik im Bauwesen (org.)
@item GAFCON
German AirForce Communication Network Mil., Germany, Netzwerk
@item GAFDIN
German AirForce Digital Network Mil., Germany, Netzwerk
@item GAIA
GUI Application Interoperability Architecture (OSF)
@item GAIN
Gator Advertising and Information Network
@item GAIN
German Advanced Integrated Network (IBM)
@item GAK
Governmental Accessed Keys (cryptography)
@item GAL
Generic Array celL / Logic
@item GAL
Global Address List (MS, Windows, Exchange)
@item GAN
Global Area Network
@item GAN
GrenzAktenNachweis (INPOL)
@item GAP
Generic Access Profile (DECT, Europe, Bluetooth)
@item GAP
Generic Address Parameter
@item GARP
Gratious Address Resolution Protocol (ARP), "gARP"
@item GART
Graphics Address Remapping Table (AGP)
@item GASH
Group Admin SHell (Unix, Shell)
@item GATOR
GATeway OrientierungsRatgeber (Internet)
@item GAWK
GNU AWK (GNU, AWK)
@item GB
GigaByte
@item GB
GuoBao [codepage]
@item GBA
GameBoy Advance (Nintendo)
@item GBASP
GameBoy Advance Special Project (Nintendo), "GBA SP"
@item GBIC
GigaBIT Interface Converter
@item GBIT
Giga BIT (BIT), "GBit"
@item GBM
Generalised Bitmap Module (DLL, Windows, Linux, OS/2)
@item GBPS
GigaBits Per Second (BIT)
@item GC
Global Catalog (MS, AD)
@item GC
Graphic Context (X-Windows)
@item GCA
General Communications Architecture (Ingres)
@item GCAD
Geographical Computer Aided Design System
@item GCATT
Georgia Center for Advanced Telecommunications Technology (org., USA), http://www.gcatt.gatech.edu
@item GCC
GNU C Compiler / GNU Compiler Collection (GNU)
@item GCCS
Global Command and Control System (DISA, mil.)
@item GCCS
Government Code and Cipher School (UK, mil.), "GC&CS"
@item GCF
Generic Connection Framework (Java, J2ME)
@item GCFW
GIAC Certified FireWall analyst (GIAC, GSE)
@item GCHQ
Government Communications HeadQuarters (mil., UK), http://www.gchq.gov.uk
@item GCIA
GIAC Certified Intrusion Analyst (GIAC, GSE)
@item GCID
Global Call IDentifier
@item GCIDIE
Global Call IDentifier- Information Element (GCID), "GCID-IE"
@item GCIH
GIAC Certified Incident Handler (GIAC, GSE)
@item GCJ
GNU Compiler for Java (GNU, Java)
@item GCL
GNU Common LISP (GNU, LISP)
@item GCL
Graphics Command Language
@item GCM
Galois/Counter Mode
@item GCN
Graphics Core Next (AMD)
@item GCOS
General Comprehensive Operating System (Honeywell, OS, Honeywell Series 60, Honeywell Series 6000)
@item GCR
Gray Component Replacement (RGB, CYMK, DTP)
@item GCR
Group Coded Recording
@item GCRA
Generic Cell Rate Algorithm (UNI, ATM)
@item GCS
Greek Computer Society (org., Griechenland), http://www.epy.gr
@item GCS
Group Control System (IBM, VM, VME, VM/ESA)
@item GCT
Group Completion Table (Power4, IBM, CPU)
@item GCUX
GIAC Certified UniX security administrator (GIAC, GSE)
@item GCWN
GIAC Certified WiNdows security administrator (GIAC, GSE)
@item GCWS
[ServerWorks] Grand Champion WorksStation [chipset], "GC-WS"
@item GDA
Global Directory Agent (DCE)
@item GDAP
Government Document Application Profile
@item GDB
GNU DeBugger (GNU)
@item GDBM
GNU Data Base Manager (DB, GNU)
@item GDC
GCC D Compiler (GCC)
@item GDD
Gesellschaft fuer Datenschutz und Datensicherung (org.)
@item GDDM
Graphical Data Display Manager (IBM)
@item GDDR2
Graphics Double Data Rate 2 (SDRAM, IC, Samsung)
@item GDF
Gnutella Developer Forum (GNU, Internet)
@item GDH
Grid Data Handle (grid)
@item GDI
Graphical Device / Display Interface
@item GDL
Geometric Description Language
@item GDM
Grid Data Management (Grid)
@item GDMI
Generic Definition of Management Information
@item GDMO
Guidelines for the Definition of Managed Objects (OSI)
@item GDOP
Geometrical Dilution Of Precision (GPS)
@item GDOS
Graphics Device Operating System (OS, Atari)
@item GDOUG
Greater Detroit OS/2 User Group (org., user group, OS/2, USA)
@item GDPDU
Grundsaetze zum Datenzugriff und zur Pruefbarkeit Digitaler Unterlagen (BMF), "GDPdU"
@item GDPS
Geographically Dispersed Parallel Sysplex
@item GDQS
Grid Distributed Query Service (DQP, OGSA-DAI, grid)
@item GDR
General Distribution Release
@item GDR
Grid Data Reference (grid)
@item GDROM
GigaDisk Read Only Memory (Sega, ROM), "GD-ROM"
@item GDS
Generalized Data Stream (IBM, APPC)
@item GDS
Global Directory Service (DCE)
@item GDS
Grid Data Service (grid)
@item GDSF
Grid Data Service Factory (GDS, grid)
@item GDT
Global Descriptor Table
@item GDT
Grid Data Transport (grid)
@item GDTD
Grid Data Transport Depot (GDT, grid)
@item GDTRC
Global Descriptor Table Register Cache (GDT, Intel, CPU)
@item GDTS
Grid Data Translation / Transformation Service (grid)
@item GE
General Electric (manufacturer, GE)
@item GE
GigaBIT Ethernet (ethernet, BIT)
@item GEAM
GEAM Encrypts All Mails (cryptography)
@item GECOS
General Electric Comprehensive Operating Supervisor / System (OS, GE, GCOS, predecessor, Honeywell)
@item GEDCOM
GEnealogical Data COMmunication [format], "GeDCom"
@item GEF
Graphical Editing Framework (Java, SWT, WTP)
@item GEGL
GEneric Graphic Library (GIMP)
@item GEI
Gesellschaft fuer Elektronische Informationsverarbeitung [mbh] (manufacturer, Aachen)
@item GEIST
German Encyclopedic Internet Service Terminal (org.), http://www.geist.spacenet.de
@item GEM
Generalized Executive for realtime Multiprocessor applications (OS)
@item GEM
Graphics Environment Manager (DR, PC)
@item GEMM
GEneral Matrix Multiply (BLAS)
@item GENA
General Event Notification Architecture (UPnP)
@item GENI
Global Environment for Network Innovations (NSF), http://geni.net
@item GENIE
General Electric Network for Information Exchange (network, GE), http://www.genie.com
@item GEOS
Graphic Environment Operating System (OS)
@item GEPON
Gigabit Ethernet Passive Optical Network (EPON, IEEE 802.3ah)
@item GERAN
GSM EDGE Radio Access Network (GSM, EDGE, mobile-systems)
@item GESIP
GESellschaft fuer Informatik in der Pharmazie [e.v.] (org.)
@item GETS
Government Emergency Telecommunications System (USA)
@item GEVN
GEOFON Virtual Network (GEOFON)
@item GFC
Generic Flow Control (ATM)
@item GFC
Going For Coffee (slang, Usenet, IRC)
@item GFDL
GNU Free Documentation License (GNU)
@item GFLOPS
Giga FLoating-point Operations Per Second (CPU)
@item GFP
Global Functional Plane (IN)
@item GFS
Global File System (GFS, Unix)
@item GFSK
Gaussian Frequency Shift Keying (telecommunication)
@item GGF
Global Grid Forum (org., grid, EMC, FSC, HP, Intel, Oracle, ...), http://www.gridforum.org
@item GGI
General Graphics Interface
@item GGP
Gateway to Gateway Protocol (RFC 823), ftp://ftp.rfc-editor.org/in-notes/rfc823.txt
@item GGS
GueteGemeinschaft Software [e.v.] (org.)
@item GGSN
Gateway GPRS Support Node (GPRS, mobile-systems)
@item GHOST
Goal Hierarchy and Objectives Structuring Technique (TUB)
@item GHTSTN
Guest Host Technique SuperTwisted Nematic (LCD), "GHT-STN"
@item GI
Gesellschaft fuer Informatik (org.), http://www.gi-ev.de
@item GIAC
Global Information Assurance Certification (org.), http://www.giac.org
@item GIBI
GIgaBInary [(2^10)^3] (IEC)
@item GIC
Generic Interrupt Controller
@item GID
Group ID
@item GIDAS
Grafisch-Interaktives DatenAnalyseSystem
@item GIDEI
General Input Device Emulation Interface
@item GIDF
Google Ist Dein Freund (telecommunication, Usenet, IRC)
@item GIDO
General Intrusion Detection Object (CIDF)
@item GIFT
GNU Image Finding Tool (GNU)
@item GIGO
Garbage In Garbage Out
@item GII
General Input Interface
@item GIL
Gesellschaft fuer Informatik in der Land-, forst- und ernaehrungswirtschaft [e.v.] (org.)
@item GIM
Gesellschaft fuer informationstechnik und InformationsManagement [mbh] (ISC, Bremen), http://www.gim.de
@item GIMP
General / GNU Image Manipulation Program (Linux, graphics, GNU), http://www.gimp.org
@item GIMPS
Great Internet Mersenne Prime Search (Internet), http://www.mersenne.org
@item GINA
Generische INteraktive Anwendung (GMD)
@item GINA
Graphic Identification and Authentication
@item GIOP
General Inter-ORB Protocol (OMG, CORBA, ORB, IIOP)
@item GIPS
Giga Instructions Per Second (CPU)
@item GIRL
Generalized Information Retrieval Language
@item GIS
Geographic Information System
@item GISF
GIAC Information Security Fundamentals (GIAC)
@item GIT
GNU Interactive Tools (GNU)
@item GITS
Government Information Technology Service (USA)
@item GIUA
German Ingres User Association (org., user group, DBMS, DB)
@item GJSP
GNU Java Server Pages (GNU, Java, JSP)
@item GKDC
Group Key Distribution Centre (KDC, CBT)
@item GKHI
Generalized Kernel Hook Infrastructure (Linux, IBM)
@item GKMP
Group Key Management Protocol
@item GKS
Graphic Kernel System
@item GLDV
Gesellschaft fuer Linguistische DatenVerarbeitung (org.)
@item GLF
Group Looking For (MMORPG, slang, LFG)
@item GLGPL
GNU Lesser General Public License (GNU)
@item GLI
Graphics Link Interface
@item GLM
Generalized Markup Language
@item GLOCOM
[center for] GLObal COMmunications (org., Japan), http://www.glocom.ac.jp
@item GLONASS
Globalnaja Nawigazionnaja Sputnikowaja Sistema
@item GLSL
openGL Shading Language (OpenGL)
@item GLT
openGL c++ Toolkit (OpenGL)
@item GLTSD
Global Logging Target Save Disabled (HDD, SCSI)
@item GLU
openGL Utility Library (OpenGL, GLU)
@item GLUT
openGL Utility library Toolkit (OpenGL, GLU)
@item GLX
openGL extension for the X window system (OpenGL, X-WIndows)
@item GM
General MIDI [standard] (MIDI)
@item GMA
Gesellschaft fuer Mess- und Automatisierungstechnik (org., VDI)
@item GMC
Global Motion Compensation (DivX, video)
@item GMCH
Graphics and Memory Controller Hub (Intel, ICH)
@item GMD
Gesellschaft fuer Mathematik und Datenverarbeitung (org., St. Augustin), http://www.gmd.de
@item GMDS
deutsche Gesellschaft fuer Medizinische Dokumentation, informatik und Statistik [e.v.] (org.)
@item GME
Gesellschaft MikroElektronik (org., VDE, VDI)
@item GMGPL
GNAT Modified GNU Public License (GNAT, GNU, GPL)
@item GMI
Generic Management Information (OSI)
@item GMK
Group Master Key (RSN, cryptography)
@item GML
GameMaker Language
@item GML
General Markup Language
@item GML
Geography Markup Language (XML, OGC)
@item GML
Graph Modeling Language
@item GMOEOR
Gesellschaft ??? (org.)
@item GMP
GNU Multi-Precision [library] (GNU)
@item GMPLS
Generalized MultiProtocol Label Switching
@item GMR
Giant Magneto-Resistive [heads] (HDD, IBM, Toshiba)
@item GMSC
Gateway Mobile services Switching Center (mobile-systems)
@item GMSK
Gaussian Minimum Shift Keying
@item GMT
Greenwich Mean Time [+0000] (TZ, UTC, UK)
@item GNA
Global Network Academy (Internet)
@item GNAT
GNU Ada Translator (GNU)
@item GNBD
Global Network Block Device (GFS)
@item GNFS
General Number Field Sieve (cryptography)
@item GNI
GayNet International (network)
@item GNIUS
GSM Network for Improved access to Universal Services (GSM, Europe)
@item GNMP
Government Network Management Profile (USA)
@item GNN
Global Network Navigator (Internet, WWW)
@item GNOME
GNU Network Object Model Environment (GNU, GNOME, GUI), http://www.gnome.org
@item GNU
GNU's Not Unix (recursive!, Unix, GNU, OS), http://www.gnu.org
@item GNUPG
GNU Privacy Guard (GNU, cryptography), "GnuPG", http://www.gnupg.org
@item GNV
GNU is Not VMS (HP, VMS, GNU)
@item GNX400
Gateway Network eXchange 400 (Proteon, SNA, SDLC), "GNX 400"
@item GOBS
Grundsaetze Ordnungsmaessiger DVgestuetzter BuchfuehrungsSysteme (DV), "GoBS"
@item GOCA
Graphic Object Content Architecture (IBM, MO:DCA)
@item GOD
Global OutDial
@item GOD
Grundsaetze ordnungsmaessiger Datenverarbeitung, "GoD"
@item GOEP
Generic Object Exchange Profile (Bluetooth, SPP)
@item GOK
GNOME On-screen Keyboard (GNOME)
@item GOMS
Goals, Operators, Methods, Selection [theory]
@item GOP
Group Of Pictures (video, VOBU, DVD)
@item GOPS
Giga Operations Per Second
@item GOSIP
Government Open Systems Interconnections Profile (USA, UK)
@item GOT
Global Offset Table
@item GP
Generative Programming
@item GPA
GNU Privacy Assistant (GNU, GnuPG)
@item GPC
General-Purpose Computation
@item GPC
GNU Pascal Compiler (GNU)
@item GPC
Graphics Performance Characterization [committee] (org., HP, IBM, DEC, SGI, Sun,...)
@item GPC
Graphics Performance Council (SPEC)
@item GPC
Group Policy Container (AD, GPO)
@item GPCI
Graphics Processor Command Interface
@item GPF
General Protection Fault (Windows)
@item GPFS
General Parallel File System (IBM)
@item GPG
GNU Privacy Guard (GNU)
@item GPGPU
General Purpose computation on Graphics Processing Units (GPU), http://www.gpgpu.org
@item GPI
Graphics Programming Interface
@item GPIB
General Purpose Interface Bus (IEEE 488)
@item GPIB
General-Purpose Interface Bus (IEEE 488, GPIB)
@item GPIO
General Purpose Input Output
@item GPL
General Public Licence (GNU)
@item GPL
Graphics Programming Language
@item GPM
Gesellschaft fuer ProjektManagement [e.v.] (org.)
@item GPMC
Group Policy Management Console (MS, Windows, XP, .NET)
@item GPO
Group Policy Objects (AD, GPO)
@item GPON
Gigabit Passive Optical Network (EPON)
@item GPOS
General Purpose Operation System
@item GPP
[SCSI-3] Generic Packetized Protocol (SAM)
@item GPP
GNU [C] Plus Plus [compiler] (GNU)
@item GPR
General Purpose Register (CPU)
@item GPRS
General Packet Radio Service / System (ETSI, GSM, TCP/IP, GPRS, mobile-systems)
@item GPS
Global Positioning System (GPS)
@item GPSI
Graphics Processor Software Interface
@item GPSID
GPS Intermediate Driver (Windows, Mobile)
@item GPT
Group Policy Template (AD, GPO)
@item GPT
GUID Partition Table (EFI, GUID)
@item GPU
Graphics Processing Unit
@item GPV
General Public Virus
@item GQES
Grid Query Evaluation Service (DQP, OGSA-DAI, grid)
@item GRADD
GRaphics Adapter Device Driver (OS/2, IBM)
@item GRAPHML
GRAPH Markup Language
@item GRAPHXML
GRAPH eXtensible Markup Language (XML)
@item GRASP
Graphic Animation System for Professionals
@item GRAW
Ghost Recon Advanced Warfighter
@item GRC
Generic Reference Configuration
@item GRDDL
Gleaning Resource Descriptions from Dialects of Languages (W3C, XML, RDF)
@item GRE
Generic Routing Encapsulation (RFC 1701, VPN), ftp://ftp.rfc-editor.org/in-notes/rfc1701.txt
@item GREP
Global Regular Expression Print (Unix)
@item GRH
Global Route Header (Infiniband)
@item GRIB
GRIdded Binary [format]
@item GRIC
Global Research Internet Connection (org., ISP), http://www.gric.com
@item GRINS
GRaphical iNterface to SMIL (SMIL, Oratix), "GRiNS"
@item GRPS
General Packet Radio Service (GSM, mobile-systems)
@item GRS
Global Resource Serialization (IBM)
@item GRS
Generalized Reed-Solomon [code]
@item GRUB
GRand Unified Bootloader (GNU)
@item GS
General Standard (MIDI)
@item GS
Gepruefte Sicherheit
@item GS
Graphic Synthesizer (Sony, Playstation)
@item GSA
Global mobile Suppliers Association (org., mobile-systems)
@item GSDK
Game Software Development Kit (Linux, GGI, OpenGL)
@item GSDS
Genealogy Software Distribution System
@item GSE
GIAC Security Expert (GIAC)
@item GSEC
GIAC Security Essentials Certification (GIAC)
@item GSER
Generic String Encoding Rules (ASN1, RFC 3641/342), ftp://ftp.rfc-editor.org/in-notes/rfc3641.txt, ftp://ftp.rfc-editor.org/in-notes/rfc3642.txt
@item GSH
Grid Service Handle (OGSI, grid)
@item GSIF
Global Signaling and Inter-working Forum (org.), http://www.gsif.info
@item GSL
Graphics Software Labs (AT&T)
@item GSLC
GIAC Certified Security Leadership (GIAC)
@item GSM
Global System for Mobile communications
@item GSM
Groupe Speciale Mobile (org. , CEPT)
@item GSMP
General Switch Management Protocol (DEC, Sprint)
@item GSNA
GIAC Systems and Network Auditor
@item GSNW
Gateway Service for NetWare (MS, Windows NT)
@item GSP
GNU Server Pages (GNU, Java, JSP)
@item GSR
Grid Service Reference (OGSI, grid)
@item GSRC
GigaScale Systems Research Center (org.), http://www.gigascale.org
@item GSS
Generic Security Service (IETF, GSS-API)
@item GSS
Group Support System
@item GSSAPI
Generic Security Service API (RFC 2078, API), "GSS-API", ftp://ftp.rfc-editor.org/in-notes/rfc2078.txt
@item GST
Guam Standard Time [+1000] (TZ)
@item GSUG
German Smalltalk Users Group (user group, Smalltalk, org.)
@item GSX
Graphics System eXtension
@item GTC
GPU Technology Conference (Nvidia, GPU), http://www.nvidia.com/gtc
@item GTDM
Group Time Division Multiplexing [protocol]
@item GTF
Generalized Timing Format (VESA)
@item GTF
GPL'ed TLA FAQ (GPL, TLA, FAQ)
@item GTFO
Get The Fuck Out (slang, Usenet, IRC)
@item GTG
Good To Go (slang, Cygwin)
@item GTK
[GNU] GIMP ToolKit (GNU, GUI), http://www.gtk.org
@item GTK
Group Transient Key (RSN, cryptography, WLAN)
@item GTL
Gunning Tranceiver Logic+ [bus] (Intel, SMP), "GTL+"
@item GTLD
Generic Top Level Domain (Internet, ICANN), "gTLD"
@item GTP
GPRS Tunnel Protocol (GPRS, mobile-systems)
@item GTS
GigaTexel Shading
@item GTS
Global Telecommunication System
@item GTSC
Global Technical Support Centre (MS)
@item GTSM
Generalized TTL Security Mechanism (TTL, RFC 3682), ftp://ftp.rfc-editor.org/in-notes/rfc3682.txt
@item GUI
Graphical User Interface (UI)
@item GUID
Global[ly] Unique IDentifier (COM)
@item GUIDE
Graphical User Interface Design Editor (Sun)
@item GUILE
GNU's Ubiquitous Intelligent Language for Extension (GNU)
@item GULM
Global Universal Lock Manager / Grand Unified Lock Manager (GFS)
@item GUMO
General User Model Ontology (DFKI)
@item GURPS
Generic Universal RolePlaying System
@item GUS
Guide to the Use of Standards (SPAG)
@item GUUG
German Unix User Group (org., user group, Unix), http://www.guug.de
@item GV
GebaeudeVerteiler (cable, EN 50 173)
@item GVBA
Global Village Business Association (org., USA), http://www.gvba.org
@item GVC
GNU Volunteer Coordinators (GNU)
@item GVRP
GARP VLAN Registration Protocol (GARP, VLAN)
@item GVV
German Volunteer Votetakers (Usenet, DANA)
@item GWAI
German Workshop on Artificial Intelligence (conference, AI)
@item GWBASIC
Graphics and Windows Beginner's All-purpose Symbolic Instruction Code (BASIC, MS-DOS), "GW-Basic"
@item GWDG
Gesellschaft fuer Wissenschaftliche Datenverarbeitung Goettingen [mbH] (org.), http://www.gwdg.de
@item GWS
Gesellschaft fuer Wirtschafts- und Sozialkybernetik (org., Uni Marburg)
@item GWS
Graphics WorkShop
@item GWT
Google Web Toolkit (Google, WWW, Java, AJAX)
@item GXA
Global XML Architecture (MS, IBM, Verisign, cryptography)
@item GYVE
GNU Yellow Vector Editor (GNU)
@end table
|