Home
last modified time | relevance | path

Searched defs:Build (Results 1 – 25 of 6012) sorted by relevance

12345678910>>...241

/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/common/
H A Dversion.h6 struct Build struct
20 static const char *BuildNumberStr; argument
23 static const char *BuildHost; argument
24 static const char *BuildArch; argument
25 static const char *BuildCompiler; argument
27 static const char *BuildLocation; // Local or Pipeline argument
29 static const char *BuildDate; argument
30 static const char *BuildTime; argument
31 static const char *BuildYear; argument
34 static const char *CMAKE_INSTALL_PREFIX;
/dports/databases/mariadb103-client/mariadb-10.3.34/mysql-test/suite/rpl/r/
H A Drpl_semisync_ali_issues.result92 SET DEBUG_SYNC= "now WAIT_FOR before_fetch_done";
97 show status like 'Rpl_semi_sync_master_clients';
99 Rpl_semi_sync_master_clients 1
102 SET GLOBAL rpl_semi_sync_master_wait_point= 'AFTER_COMMIT';
106 SET DEBUG_SYNC= "now WAIT_FOR after_commit_done";
111 2
115 select * from t1;
119 3
121 SET DEBUG_SYNC= "now SIGNAL end";
128 3
[all …]
/dports/devel/matreshka/matreshka-0.7.0/tools/configure/
H A Dconfigure-builder.adb59 function Build subprogspec
68 function Build subprogram
72 Args : constant GNAT.OS_Lib.Argument_List
75 Result : Boolean;
125 function Build subprogram
143 return Build (Report_Log'Access, Directory); argument
150 function Build (Directory : String) return Boolean is subprogram
166 return Build (Report_Log'Access, Directory); argument
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/pkg/version/
H A Dversion.go46 type Build struct { struct
47 Version string
48 GitCommit string
49 BuildDate string
50 BuildNumber string
51 State string
52 PluginVersion int
92 func (v *Build) String() string {
103 func (v *Build) ShortVersion() string {
112 func (v *Build) Equal(b *Build) bool {
[all …]
/dports/www/beehive/beehive-0.4.0/vendor/github.com/shuheiktgw/go-travis/
H A Dbuilds.go24 type Build struct { struct
26 Id uint `json:"id,omitempty"`
28 Number string `json:"number,omitempty"`
30 State string `json:"state,omitempty"`
32 Duration uint `json:"duration,omitempty"`
48 Private bool `json:"private,omitempty"`
52 Branch *Branch `json:"branch,omitempty"`
54 Tag *Tag `json:"tag,omitempty"`
58 Jobs []*Job `json:"jobs,omitempty"`
63 *Metadata
[all …]
/dports/misc/concourse/concourse-6.7.2/atc/
H A Dbuild.go14 type Build struct { struct
15 ID int `json:"id"`
16 TeamName string `json:"team_name"`
17 Name string `json:"name"`
18 Status string `json:"status"`
19 JobName string `json:"job_name,omitempty"`
20 APIURL string `json:"api_url"`
23 EndTime int64 `json:"end_time,omitempty"`
34 func (b Build) IsRunning() bool {
43 func (b Build) Abortable() bool {
[all …]
/dports/net/concourse-fly/concourse-6.7.1/atc/
H A Dbuild.go14 type Build struct { struct
15 ID int `json:"id"`
16 TeamName string `json:"team_name"`
17 Name string `json:"name"`
18 Status string `json:"status"`
19 JobName string `json:"job_name,omitempty"`
20 APIURL string `json:"api_url"`
23 EndTime int64 `json:"end_time,omitempty"`
34 func (b Build) IsRunning() bool {
43 func (b Build) Abortable() bool {
[all …]
/dports/databases/postgresql13-client/postgresql-13.5/src/backend/catalog/
H A Dobjectaccess.c3 * objectaccess.c
4 * functions for object_access_hook on various events
6 * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * -------------------------------------------------------------------------
/dports/devel/gprbuild/gprbuild-376670f/src/
H A Dgprlib-build_shared_lib.adb43 procedure Build (Output_File : String); subprogspec
51 procedure Build (Output_File : String) is subprogram
52 Success : Boolean;
54 Out_Opt : constant String_Access := new String'("-o");
55 Out_V : constant String_Access := new String'(Output_File);
57 Driver : String_Access;
59 Response_File_Name : Path_Name_Type := No_Path;
60 Response_2 : Path_Name_Type := No_Path;
61 Export_File : Path_Name_Type := No_Path;
63 procedure Display_Linking_Command;
[all …]
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/proc/src/sort/
H A Doutput_format.rs37 type Build = SmartString; typedef
44 fn ingest(&self, input: &str, options: &IngestOptions) -> Self::Build { in ingest()
49 fn plain(&self, s: &str) -> Self::Build { in plain()
58 fn join_delim(&self, mut a: Self::Build, delim: &str, b: Self::Build) -> Self::Build { in join_delim()
77 nodes: Vec<Self::Build>, in group()
80 ) -> Self::Build { in group()
85 fn quoted(&self, b: Self::Build, _quotes: LocalizedQuotes) -> Self::Build { in quoted()
92 fn with_format(&self, a: Self::Build, _f: Option<Formatting>) -> Self::Build { in with_format()
97 fn with_display(&self, a: Self::Build, _d: Option<DisplayMode>, _in_bib: bool) -> Self::Build { in with_display()
102 fn hyperlinked(&self, a: Self::Build, _target: Option<&str>) -> Self::Build { in hyperlinked()
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/cache/
H A Dcache.go18 func getCacheConfig(build *common.Build) *common.CacheConfig {
26 func generateBaseObjectName(build *common.Build, config *common.CacheConfig) string {
35 func generateObjectName(build *common.Build, config *common.CacheConfig, key string) (string, error…
55 func buildAdapter(build *common.Build, key string) (Adapter, error) {
76 func onAdapter(build *common.Build, key string, handler func(adapter Adapter) interface{}) interfac…
89 func GetCacheDownloadURL(build *common.Build, key string) *url.URL {
108 func GetCacheUploadURL(build *common.Build, key string) *url.URL {
116 func GetCacheUploadHeaders(build *common.Build, key string) http.Header {
129 func GetCacheGoCloudURL(build *common.Build, key string) *url.URL {
137 func GetCacheUploadEnv(build *common.Build, key string) map[string]string {
/dports/games/fheroes2/fheroes2-0.9.11/docs/
H A DDEVELOPMENT.md3 ## Build section in [**fheroes2**](README.md) build and contribution guide
7 ### Windows
19 ### macOS and Linux
31 ### PlayStation Vita
35 ### Nintendo Switch
39 ### Build with CMake
/dports/security/wolfssl/wolfssl-5.1.0/wolfcrypt/src/port/kcapi/
H A DREADME.md20 ## Build section in wolfSSL using libkcapi
22 #### Basic configuration
39 #### Other defines
50 #### RSA configuration
60 #### DH configuration
68 #### ECC configuration
78 #### Make
87 #### Testing
99 #### Install
/dports/databases/mariadb105-client/mariadb-10.5.15/extra/wolfssl/wolfssl/wolfcrypt/src/port/kcapi/
H A DREADME.md20 ## Build section in wolfSSL using libkcapi
22 #### Basic configuration
39 #### Other defines
50 #### RSA configuration
60 #### DH configuration
68 #### ECC configuration
78 #### Make
87 #### Testing
99 #### Install
/dports/databases/mariadb104-server/mariadb-10.4.24/extra/wolfssl/wolfssl/wolfcrypt/src/port/kcapi/
H A DREADME.md20 ## Build section in wolfSSL using libkcapi
22 #### Basic configuration
39 #### Other defines
50 #### RSA configuration
60 #### DH configuration
68 #### ECC configuration
78 #### Make
87 #### Testing
99 #### Install
/dports/databases/mariadb105-server/mariadb-10.5.15/extra/wolfssl/wolfssl/wolfcrypt/src/port/kcapi/
H A DREADME.md20 ## Build section in wolfSSL using libkcapi
22 #### Basic configuration
39 #### Other defines
50 #### RSA configuration
60 #### DH configuration
68 #### ECC configuration
78 #### Make
87 #### Testing
99 #### Install
/dports/databases/mariadb104-client/mariadb-10.4.24/extra/wolfssl/wolfssl/wolfcrypt/src/port/kcapi/
H A DREADME.md20 ## Build section in wolfSSL using libkcapi
22 #### Basic configuration
39 #### Other defines
50 #### RSA configuration
60 #### DH configuration
68 #### ECC configuration
78 #### Make
87 #### Testing
99 #### Install
/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/exts/dbcsr/docs/guide/2-user-guide/1-installation/
H A D1-install.md37 ## Build section in Install
79 ### CMake Build Recipes
83 ### Using Python in a virtual environment
91 ### Running Tests
101 ### C/C++ Interface
105 ### Workaround issue in HIP
/dports/devel/texlab/citeproc-rs-5252fbd8d2046a5a7d5cdcee6c6cb39bd0f1a7f3/crates/io/src/output/
H A Dmod.rs132 ) -> Self::Build; in group()
162 ) -> Self::Build { in affixed_text_quoted()
171 ) -> Self::Build { in affixed_text()
175 fn quoted(&self, b: Self::Build, quotes: LocalizedQuotes) -> Self::Build; in quoted()
178 fn affixed(&self, b: Self::Build, affixes: Option<&Affixes>) -> Self::Build { in affixed()
184 b: Self::Build, in affixed_quoted()
187 ) -> Self::Build { in affixed_quoted()
217 fn with_format(&self, a: Self::Build, f: Option<Formatting>) -> Self::Build; in with_format()
220 a: Self::Build, in with_display()
223 ) -> Self::Build; in with_display()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@
/dports/www/firefox/firefox-99.0/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@
/dports/www/firefox-esr/firefox-91.8.0/toolkit/xre/
H A Dplatform.ini9 [Build] section
10 BuildID=@MOZ_BUILDID@ argument
11 Milestone=@GRE_MILESTONE@
13 SourceRepository=@MOZ_SOURCE_REPO@
16 SourceStamp=@MOZ_SOURCE_STAMP@

12345678910>>...241