Home
last modified time | relevance | path

Searched refs:evidences (Results 1 – 25 of 166) sorted by relevance

1234567

/dports/devel/R-cran-progressr/progressr/R/
H A Dutils.R132 evidences <- list() list
137 evidences[["vanilla"]] <- is.element("--vanilla", args)
146 evidences[["tests"]] <- (
151 evidences[["pwd"]] <- (evidences[["tests"]] || grepl(pattern, dirname))
159 if (evidences[["win-builder"]]) {
162 evidences[["vanilla"]] <- TRUE
166 evidences[["pwd"]] <- TRUE
171 if (!evidences$vanilla || !evidences$pwd) {
173 } else if (evidences$tests) {
175 } else if (evidences$examples) {
[all …]
/dports/devel/R-cran-parallelly/parallelly/R/
H A Dutils.R121 evidences <- list() list
126 evidences[["vanilla"]] <- is.element("--vanilla", args)
135 evidences[["tests"]] <- (
140 evidences[["pwd"]] <- (evidences[["tests"]] || grepl(pattern, dirname))
148 if (evidences[["win-builder"]]) {
151 evidences[["vanilla"]] <- TRUE
155 evidences[["pwd"]] <- TRUE
159 if (!evidences$vanilla || !evidences$pwd) {
161 } else if (evidences$tests) {
163 } else if (evidences$examples) {
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/releases/components/
H A Devidence_block.vue28 evidences() {
29 return this.release.evidences;
34 const [tag, evidence, filename] = this.release.evidences[index].filepath.split('/').slice(-3);
38 return this.release.evidences[index].filepath;
41 return this.release.evidences[index].sha;
44 return truncateSha(this.release.evidences[index].sha);
47 return dateFormat(this.release.evidences[index].collectedAt, 'mmmm dS, yyyy, h:MM TT');
52 time: format(this.release.evidences[index].collectedAt),
65 <div v-for="(evidence, index) in evidences" :key="evidenceTitle(index)" class="mb-2">
H A Drelease_block.vue53 return Boolean(this.release.evidences && this.release.evidences.length);
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/RealTimeBidding/
H A DPolicyTopicEntry.php29 public function setEvidences($evidences) argument
31 $this->evidences = $evidences;
38 return $this->evidences;
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/module_BN/
H A DShaferShenoyInferenceTestSuite.h321 evidences.insert(&ev_pot); in testAsia()
328 for (auto pot: evidences) { in testAsia()
380 evidences.insert(ev_pot); in testAlarm()
385 for (auto pot: evidences) { in testAlarm()
408 for (auto pot: evidences) { in testAlarm()
417 for (auto pot: evidences) in testAlarm()
448 evidences.insert(&ev_pot); in testAsia2()
449 evidences.insert(&ev_pot2); in testAsia2()
504 evidences.insert(&ev_pot); in testAsia3()
505 evidences.insert(&ev_pot2); in testAsia3()
[all …]
H A DVariableEliminationTestSuite.h331 evidences.insert(&ev_pot); in testAsia()
338 for (auto pot: evidences) { in testAsia()
390 evidences.insert(ev_pot); in testAlarm2()
395 for (auto pot: evidences) { in testAlarm2()
419 for (auto pot: evidences) { in testAlarm2()
428 for (auto pot: evidences) in testAlarm2()
459 evidences.insert(&ev_pot); in testAsia2()
460 evidences.insert(&ev_pot2); in testAsia2()
515 evidences.insert(&ev_pot); in testAsia3()
516 evidences.insert(&ev_pot2); in testAsia3()
[all …]
H A DLazyPropagationTestSuite.h388 evidences.insert(&ev_pot); in testAsia()
395 for (auto pot: evidences) { in testAsia()
447 evidences.insert(ev_pot); in testAlarm()
452 for (auto pot: evidences) { in testAlarm()
476 for (auto pot: evidences) { in testAlarm()
485 for (auto pot: evidences) in testAlarm()
516 evidences.insert(&ev_pot); in testAsia2()
517 evidences.insert(&ev_pot2); in testAsia2()
572 evidences.insert(&ev_pot); in testAsia3()
573 evidences.insert(&ev_pot2); in testAsia3()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Security/
H A DSecurityManager.cs223 public static PermissionSet ResolvePolicy (Evidence[] evidences) in ResolvePolicy() argument
225 if ((evidences == null) || (evidences.Length == 0) || in ResolvePolicy()
226 ((evidences.Length == 1) && (evidences [0].Count == 0))) { in ResolvePolicy()
231 PermissionSet ps = ResolvePolicy (evidences [0]); in ResolvePolicy()
232 for (int i=1; i < evidences.Length; i++) { in ResolvePolicy()
233 ps = ps.Intersect (ResolvePolicy (evidences [i])); in ResolvePolicy()
H A DSecurityManager_mobile.cs126 public static PermissionSet ResolvePolicy (Evidence[] evidences) in ResolvePolicy() argument
/dports/devel/R-cran-future/future/R/
H A Dutils.R1072 evidences <- list() list
1077 evidences[["vanilla"]] <- is.element("--vanilla", args)
1086 evidences[["tests"]] <- (
1091 evidences[["pwd"]] <- (evidences[["tests"]] || grepl(pattern, dirname))
1099 if (evidences[["win-builder"]]) {
1102 evidences[["vanilla"]] <- TRUE
1106 evidences[["pwd"]] <- TRUE
1110 if (!evidences$vanilla || !evidences$pwd) {
1112 } else if (evidences$tests) {
1114 } else if (evidences$examples) {
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/security/
H A Dsecuritymanager.cs288 static public PermissionSet ResolvePolicy( Evidence[] evidences ) in ResolvePolicy() argument
295 if (evidences == null || evidences.Length == 0) in ResolvePolicy()
296 evidences = new Evidence[] { null }; in ResolvePolicy()
298 PermissionSet retval = ResolvePolicy( evidences[0] ); in ResolvePolicy()
302 for (int i = 1; i < evidences.Length; ++i) in ResolvePolicy()
304 retval = retval.Intersect( ResolvePolicy( evidences[i] ) ); in ResolvePolicy()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/frontend/releases/__snapshots__/
H A Dutil_spec.js.snap57 "evidences": Array [],
153 "evidences": Array [
157 …filepath": "http://localhost/releases-namespace/releases-project/-/releases/v1.1/evidences/1.json",
250 "evidences": Array [],
365 "evidences": Array [
369 …"filepath": "http://localhost/releases-namespace/releases-project/-/releases/v1.1/evidences/1.json…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/releases/
H A Dcreate_evidence_service.rb11 evidence = release.evidences.build
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/controllers/projects/releases/
H A Devidences_controller.rb31 release.evidences.find(params[:id])
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/services/releases/
H A Dcreate_evidence_service_spec.rb12 expect { service.execute }.to change { release.reload.evidences.count }.by(1)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/models/releases/
H A Devidence_spec.rb21 evidence = release.evidences.last
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/releases/graphql/fragments/
H A Drelease.fragment.graphql34 evidences {
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/objtools/edit/
H A Dgaps_edit.hpp58 const TEvidenceSet& evidences,
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/include/objtools/edit/
H A Dgaps_edit.hpp58 const TEvidenceSet& evidences,
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Permissions/src/System/Security/
H A DSecurityManager.cs32 …public static PermissionSet ResolvePolicy(System.Security.Policy.Evidence[] evidences) { return de… in ResolvePolicy() argument
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/graphql/queries/releases/
H A Dall_releases.query.graphql50 evidences {
/dports/security/owasp-dependency-check/DependencyCheck-3.1.1/dependency-check-core/src/main/java/org/owasp/dependencycheck/analyzer/
H A DHintAnalyzer.java221 private boolean hasMatchingEvidence(Set<Evidence> evidences, EvidenceMatcher criterion) { in hasMatchingEvidence() argument
222 for (Evidence evidence : evidences) { in hasMatchingEvidence()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/api/entities/
H A Drelease_spec.rb9 let(:evidence) { release.evidences.first }
/dports/biology/py-orange3-bioinformatics/Orange3-Bioinformatics-4.3.1/orangecontrib/bioinformatics/widgets/
H A DOWGOBrowser.py647 evidences = []
650 evidences.append(etype)
662 evidences,
938 evidences = []
941 evidences.append(etype)
944 genes, direct_annotation_only=self.selection_direct_annotation, evidence_codes=evidences

1234567