Home
last modified time | relevance | path

Searched +full:operating +full:- +full:system (Results 1 – 25 of 626) sorted by relevance

12345678910>>...26

/plugin/golocal/lang/en/
Ddownload.txt5 Please follow the instructions below to install the protocol handler for your operating system.
7 - Download the appropriate version for your operating system and architecture
8- Move the downloaded file to an appropriate location (eg. ''/usr/local/bin'' or ''C:\Program File…
9 - Make the file executable (Linux only)
10 - Run the program and select "Install" to install the protocol handler
16 …ks for the protocol handler. The probably most fitting one for your operating system should be hig…
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/Resource/
DOperatingSystemVersions.php9 * http://www.apache.org/licenses/LICENSE-2.0
28 * $operatingSystemVersions = $dfareportingService->operatingSystemVersions;
34 * Gets one operating system version by ID. (operatingSystemVersions.get)
37 * @param string $id Operating system version ID.
45 return $this->call('get', [$params], OperatingSystemVersion::class);
48 * Retrieves a list of operating system versions.
59 return $this->call('list', [$params], OperatingSystemVersionsListResponse::class);
DOperatingSystems.php9 * http://www.apache.org/licenses/LICENSE-2.0
28 * $operatingSystems = $dfareportingService->operatingSystems;
34 * Gets one operating system by DART ID. (operatingSystems.get)
37 * @param string $dartId Operating system DART ID.
45 return $this->call('get', [$params], OperatingSystem::class);
48 * Retrieves a list of operating systems.
59 return $this->call('list', [$params], OperatingSystemsListResponse::class);
/plugin/dw2pdf/vendor/mpdf/qrcode/.github/workflows/
Dcs.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
9 - "development"
10 - "test"
18 runs-on: ${{ matrix.operating-system }}
22 php-version:
23 - "7.4"
25 operating-system: [ubuntu-latest]
28 - name: "Checkout"
31 - name: "Install PHP"
32 uses: "shivammathur/setup-php@v2"
[all …]
Dcoverage.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
8 - "development"
9 - "coverage"
17 runs-on: ${{ matrix.operating-system }}
21 php-version:
22 - "7.4"
24 operating-system: [ubuntu-latest]
27 - name: "Checkout"
30 - name: "Install PHP"
31 uses: "shivammathur/setup-php@v2"
[all …]
Dtests.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
9 - "master"
10 - "development"
11 - "test"
19 runs-on: ${{ matrix.operating-system }}
22 fail-fast: false
24 php-version:
25 - "5.6"
26 - "7.0"
27 - "7.1"
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/.github/workflows/
Dcs.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
9 - "development"
10 - "test"
18 runs-on: ${{ matrix.operating-system }}
22 php-version:
23 - "7.4"
25 operating-system: [ubuntu-latest]
28 - name: "Checkout"
31 - name: "Install PHP"
32 uses: "shivammathur/setup-php@v2"
[all …]
Dcoverage.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
8 - "development"
9 - "coverage"
17 runs-on: ${{ matrix.operating-system }}
21 php-version:
22 - "7.4"
24 operating-system: [ubuntu-latest]
27 - name: "Checkout"
30 - name: "Install PHP"
31 uses: "shivammathur/setup-php@v2"
[all …]
Dtests.yml1 # https://help.github.com/en/categories/automating-your-workflow-with-github-actions
9 - "master"
10 - "development"
11 - "test"
19 runs-on: ${{ matrix.operating-system }}
22 fail-fast: false
24 php-version:
25 - "5.6"
26 - "7.0"
27 - "7.1"
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/.github/workflows/
H A Dbuild.yml5 - master
8 - master
11 name: PHP ${{ matrix.php-versions }}
13 fail-fast: false
15 operating-system: [ubuntu-latest]
16 php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
17 runs-on: ${{ matrix.operating-system }}
19 - name: Checkout
21 - name: Setup PHP
22 uses: shivammathur/setup-php@v2
[all …]
/plugin/swiftmail/Swift/Plugin/
DMailSend.php24 * The operating system of the server
48 public function __construct($params="-oi -f %s")
50 $this->setAdditionalParams($params);
51 $this->setOS(PHP_OS);
59 $this->additionalParams = $params;
67 return $this->additionalParams;
70 * Set the operating system string (changes behaviour with LE)
71 * @param string The operating system
75 $this->OS = $os;
78 * Get the operating system string
[all …]
/plugin/statistics/vendor/matomo/device-detector/Parser/
DOperatingSystem.php4 * Device Detector - The Universal Device Detection library for parsing User Agents
20 * Parses the useragent for operating system information
22 * Detected operating systems can be found in self::$operatingSystems and /regexes/oss.yml
23 …* This class also defined some operating system families and methods to get the family for a speci…
38 * Known operating systems mapped to their internal short codes
98 'HPX' => 'HP-UX',
142 'NWS' => 'NEWS-OS',
191 'SBL' => 'Star-Blade OS',
232 * Operating system families mapped to the short codes of the associated operating systems
267 'Real-time OS' => ['MTK', 'TDX', 'MRE', 'JME', 'REX', 'RXT'],
[all …]
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
DEditorAboutFrame.java34 private static final long serialVersionUID = -3378029138434324390L;
52 private static final long serialVersionUID = -5062895855016210947L; in EditorAboutFrame()
94 content.add(new JLabel("JGraph X - The Swing Portion of mxGraph")); in EditorAboutFrame()
104 // content.add(new JLabel("Operating System Name: " in EditorAboutFrame()
105 // + System.getProperty("os.name"))); in EditorAboutFrame()
106 // content.add(new JLabel("Operating System Version: " in EditorAboutFrame()
107 // + System.getProperty("os.version"))); in EditorAboutFrame()
111 // + System.getProperty("java.vendor", "undefined"))); in EditorAboutFrame()
113 // + System.getProperty("java.version", "undefined"))); in EditorAboutFrame()
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DCore.NormalizeNewlines.txt5 --DESCRIPTION--
7 Whether or not to normalize newlines to the operating
8 system default. When <code>false</code>, HTML Purifier
11 --# vim: et sw=4 sts=4
/plugin/combo/ComboStrap/
H A DFont.php10 * https://github.com/dompdf/php-font-lib
14 * * Command: `fc-list` command
15 * * font for a language: `fc-list :lang=fr`
16 * * font family name: `fc-list : family | sort | uniq`
27 * There is no default system font
29 * for the operating system
35 return self::getWindowsFontDirectory()->resolve('Arial.ttf');
37 … return LocalPath::createFromPathString('/usr/share/fonts/liberation/LiberationSans-Regular.ttf');
42 * @return LocalPath - the font locale path
43 * https://github.com/liberationfonts/liberation-fonts/releases
[all …]
/plugin/farm/install/animaltemplate/conf/
Dacronyms.conf15 CMS Content Management System
17 CVS Concurrent Versions System
32 FOSS Free & Open-Source Software
81 OS Operating System
104 SCSI Small Computer System Interface
/plugin/codehighlight/cp/
Dlicense.txt5 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
DLICENSE-LGPL6 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 free software--to make sure the software is free for all its users.
22 specially designated software packages--typically libraries--of the
49 We protect your rights with a two-step method: (1) we copyright the
72 libraries into non-free programs.
85 of an advantage over competing non-free programs. These disadvantages
92 a de-facto standard. To achieve this, non-free programs must be
94 library does the same job as widely used non-free libraries. In this
98 In other cases, permission to use a particular library in non-free
101 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/matrixnotifierwas/vendor/meet-kinksters/php-matrix-sdk/
DISSUE_TEMPLATE.md1 <!-- Provide a general summary of the issue in the Title above -->
24 * Operating system and version (e.g. Ubuntu 16.04, Windows 7):
/plugin/jmol2/jmol/
DLICENSE.txt5 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/remotescript/lib/
Dlicense.txt5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/virtualkeyboard/vk/
Dlicense.txt5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/
DLICENSE5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/html2pdf/html2pdf/html2ps/
DLICENSE5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 free software--to make sure the software is free for all its users.
21 specially designated software packages--typically libraries--of the
48 We protect your rights with a two-step method: (1) we copyright the
71 libraries into non-free programs.
84 of an advantage over competing non-free programs. These disadvantages
91 a de-facto standard. To achieve this, non-free programs must be
93 library does the same job as widely used non-free libraries. In this
97 In other cases, permission to use a particular library in non-free
100 non-free programs enables many more people to use the whole GNU
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/
H A DLICENSE6 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 …es are intended to guarantee your freedom to share and change free software--to make sure the soft…
18 …c License, applies to some specially designated software packages--typically libraries--of the Fre…
26 We protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you t…
32 …is license for certain libraries in order to permit linking those libraries into non-free programs.
36 …vides other free software developers Less of an advantage over competing non-free programs. These …
38-facto standard. To achieve this, non-free programs must be allowed to use the library. A more fre…
40-free programs enables a greater number of people to use a large body of free software. For exampl…
69 …urpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requ…
83 …above provided that you accompany it with the complete corresponding machine-readable source code,…
[all …]

12345678910>>...26