Home
last modified time | relevance | path

Searched refs:incident (Results 1 – 25 of 2966) sorted by relevance

12345678910>>...119

/dports/graphics/tachyon/tachyon/src/
H A Dshade.c56 color low_shader(ray * incident) { in low_shader() argument
69 return incident->scene->bgtexfunc(incident); in low_shader()
73 incident->opticdist = FHUGE; in low_shader()
100 col=incident->scene->bgtexfunc(incident); in medium_shader()
111 incident->opticdist += t; in medium_shader()
224 col=incident->scene->bgtexfunc(incident); in full_shader()
235 incident->opticdist += t; in full_shader()
452 return incident->scene->bgtexfunc(incident); in shade_reflection()
458 incident->d.z * shadevars->N.z), &shadevars->N, &incident->d, &R); in shade_reflection()
493 return incident->scene->bgtexfunc(incident); in shade_transmission()
[all …]
H A D.#shade.c.1.8469 incident->opticdist = FHUGE;
100 col = incident->scene->fog.fog_fctn(&incident->scene->fog, col, t);
107 incident->opticdist += t;
187 col = incident->scene->fog.fog_fctn(&incident->scene->fog, col, t);
221 col = incident->scene->fog.fog_fctn(&incident->scene->fog, col, t);
228 incident->opticdist += t;
265 incident->serial++;
322 col = incident->scene->fog.fog_fctn(&incident->scene->fog, col, t);
343 incident->d.z * shadevars->N.z), &shadevars->N, &incident->d, &R);
381 transray.d=incident->d; /* ray continues on incident path */
[all …]
H A D.#shade.c.1.7023 color lowest_shader(ray * incident) {
47 color low_shader(ray * incident) {
64 incident->opticdist = FHUGE;
98 incident->opticdist += t;
206 incident->opticdist += t;
238 incident->serial++;
302 incident->d.z * shadevars->N.z), &shadevars->N, &incident->d, &R);
313 specray.mbox = incident->mbox;
330 transray.d=incident->d; /* ray continues along incident path */
338 transray.mbox = incident->mbox;
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/safe_browsing/
H A Dsignature_evaluator_mac_unittest.cc133 EXPECT_EQ(-67050, incident.sec_error()); in TEST_F()
134 EXPECT_TRUE(incident.has_signature()); in TEST_F()
135 ASSERT_TRUE(incident.has_file_basename()); in TEST_F()
164 EXPECT_EQ(-67061, incident.sec_error()); in TEST_F()
166 EXPECT_FALSE(incident.has_signature()); in TEST_F()
189 EXPECT_EQ(-67061, incident.sec_error()); in TEST_F()
191 EXPECT_FALSE(incident.has_signature()); in TEST_F()
228 EXPECT_EQ(-67061, incident.sec_error()); in TEST_F()
229 EXPECT_FALSE(incident.has_signature()); in TEST_F()
267 EXPECT_FALSE(incident.has_signature()); in TEST_F()
[all …]
/dports/devel/tbb/oneTBB-2020.3/examples/parallel_for/tachyon/src/
H A Dshade.cpp69 color shader(ray * incident) { in shader() argument
86 return incident->scene->background; in shader()
123 incident->serial++; in shader()
125 shadowray.mbox = incident->mbox; in shader()
188 VAddS(-2.0 * (incident->d.x * N->x + in shade_reflection()
189 incident->d.y * N->y + in shade_reflection()
190 incident->d.z * N->z), N, &incident->d, &R); in shade_reflection()
196 specray.mbox = incident->mbox; in shade_reflection()
220 transray.mbox = incident->mbox; in shade_transmission()
228 incident->serial = transray.serial; in shade_transmission()
[all …]
/dports/devel/taskflow/taskflow-3.2.0/3rd-party/tbb/examples/parallel_for/tachyon/src/
H A Dshade.cpp69 color shader(ray * incident) { in shader() argument
86 return incident->scene->background; in shader()
123 incident->serial++; in shader()
125 shadowray.mbox = incident->mbox; in shader()
188 VAddS(-2.0 * (incident->d.x * N->x + in shade_reflection()
189 incident->d.y * N->y + in shade_reflection()
190 incident->d.z * N->z), N, &incident->d, &R); in shade_reflection()
196 specray.mbox = incident->mbox; in shade_reflection()
220 transray.mbox = incident->mbox; in shade_transmission()
228 incident->serial = transray.serial; in shade_transmission()
[all …]
/dports/devel/onetbb/oneTBB-2021.4.0/examples/parallel_for/tachyon/src/
H A Dshade.cpp69 color shader(ray* incident) { in shader() argument
85 return incident->scene->background; in shader()
122 incident->serial++; in shader()
124 shadowray.mbox = incident->mbox; in shader()
130 shadowray.scene = incident->scene; in shader()
186 VAddS(-2.0 * (incident->d.x * N->x + incident->d.y * N->y + incident->d.z * N->z), in shade_reflection()
188 &incident->d, in shade_reflection()
195 specray.mbox = incident->mbox; in shade_reflection()
218 transray.mbox = incident->mbox; in shade_transmission()
226 incident->serial = transray.serial; in shade_transmission()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/pager_duty/
H A Dwebhook_payload_parser.rb32 def parse_incident(incident) argument
34 'url' => incident['html_url'],
36 'title' => incident['title'],
37 'status' => incident['status'],
38 'created_at' => incident['created_at'],
39 'urgency' => incident['urgency'],
40 'incident_key' => incident['incident_key'],
46 def parse_assignees(incident) argument
47 Array(incident['assignments']).map do |a|
55 def parse_impacted_services(incident) argument
[all …]
/dports/security/lego/lego-4.5.3/vendor/github.com/exoscale/egoscale/
H A Drunstatus_incident.go31 if other.Title != "" && incident.Title == other.Title {
35 if other.ID > 0 && incident.ID == other.ID {
51 if incident.URL != "" {
52 return client.getRunstatusIncident(ctx, incident.URL)
55 if incident.PageURL == "" {
56 return nil, fmt.Errorf("empty Page URL for %#v", incident)
66 if j.Match(incident) {
102 results = append(results, *incident)
142 if incident.PageURL == "" {
170 if incident.URL == "" {
[all …]
H A Drunstatus_incident_test.go178 incident, err := cs.GetRunstatusIncident(context.TODO(), RunstatusIncident{URL: ts.URL})
183 if incident.ID != 90 {
184 t.Errorf("bad incident, %#v", incident)
188incident, err = cs.GetRunstatusIncident(context.TODO(), RunstatusIncident{PageURL: ts.URL, Title: …
193 if incident.ID != 90 {
194 t.Errorf("bad incident, %#v", incident)
198 incident, err = cs.GetRunstatusIncident(context.TODO(), RunstatusIncident{PageURL: ts.URL, ID: 90})
203 if incident.Title != "AAAH" {
204 t.Errorf("bad incident, %#v", incident)
310 if incident.Title != "AAAH" {
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/github.com/exoscale/egoscale/
H A Drunstatus_incident.go31 if other.Title != "" && incident.Title == other.Title {
35 if other.ID > 0 && incident.ID == other.ID {
51 if incident.URL != "" {
52 return client.getRunstatusIncident(ctx, incident.URL)
55 if incident.PageURL == "" {
56 return nil, fmt.Errorf("empty Page URL for %#v", incident)
66 if j.Match(incident) {
102 results = append(results, *incident)
142 if incident.PageURL == "" {
170 if incident.URL == "" {
[all …]
/dports/security/py-stix/python-stix-1.2.0.11/stix/test/
H A Dincident_test.py19 import stix.incident as incident namespace
20 import stix.incident.history as history
41 klass = incident.COATime
56 klass = incident.COATaken
72 klass = incident.COARequested
141 klass = incident.LeveragedTTPs
152 klass = incident.ExternalID
161 klass = incident.Time
341 klass = incident.AffectedAssets
370 klass = incident.Incident
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/cmd/bosun/sched/
H A Dcheck.go131 if incident != nil && (incident.Id != 0 || incident.Open) {
141 if incident != nil {
154 incident, err = data.GetIncidentState(incident.Id)
169 incident.Events = append(incident.Events, *event)
181 incident, err = data.GetIncidentState(incident.Id)
196 incident, err = data.GetIncidentState(incident.Id)
241 incident.Events = append(incident.Events, *event)
251 incident.Id, err = daState.UpdateIncidentState(incident)
262 incident.PreviousIds = append(incident.PreviousIds, id)
266 return incident.PreviousIds[i] > incident.PreviousIds[j]
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/safe_browsing/incident_reporting/
H A Dincident_reporting_service.cc121 incident.GetType(), in ComputeIncidentState()
122 incident.GetKey(), in ComputeIncidentState()
123 incident.ComputeDigest(), in ComputeIncidentState()
200 std::unique_ptr<Incident> incident);
223 std::unique_ptr<Incident> incident) { in AddIncidentForProfile() argument
230 std::unique_ptr<Incident> incident) { in AddIncidentForProcess() argument
243 std::unique_ptr<Incident> incident) { in ClearIncidentForProcess() argument
267 std::unique_ptr<Incident> incident) { in AddIncidentOnMainThread() argument
278 std::unique_ptr<Incident> incident) { in ClearIncidentOnMainThread() argument
288 if (incident) in ~ProfileContext()
[all …]
H A Dpreference_validation_delegate.cc71 std::unique_ptr<TPIncident> incident( in OnAtomicPreferenceValidation() local
73 incident->set_path(pref_path); in OnAtomicPreferenceValidation()
77 incident->clear_atomic_value(); in OnAtomicPreferenceValidation()
79 incident->set_value_state(proto_value_state); in OnAtomicPreferenceValidation()
82 std::move(incident), is_personal)); in OnAtomicPreferenceValidation()
97 incident( in OnSplitPreferenceValidation() local
99 incident->set_path(pref_path); in OnSplitPreferenceValidation()
104 incident->add_split_key(*scan); in OnSplitPreferenceValidation()
109 incident->add_split_key(*scan); in OnSplitPreferenceValidation()
112 incident->set_value_state(proto_value_state); in OnSplitPreferenceValidation()
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/doc/operations/incident_management/
H A Dincidents.md28 To create an incident from the Incidents List:
36 To create an incident from the Issues List:
44 incident.
57 1. To customize the incident, select an
86 confirm that a GitLab incident is created from the incident.
97 or **All** above the incident list.
108 [Editing incident severity](#change-severity) on the incident details page was
142 - Updating the severity of an incident
146 [incident list page](https://gitlab.com/gitlab-examples/ops/incident-setup/everyone/tanuki-inc/-/in…
147 Click any incident in the list to display its incident details page.
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/cmd/bosun/database/
H A Dmigrate.go100 incident, err := d.State().GetIncidentState(id)
104 if _, ok := prevIdCache[incident.AlertKey]; !ok {
105 prevList, err := d.State().GetAllIncidentIdsByAlertKey(incident.AlertKey)
112 prevIdCache[incident.AlertKey] = &prevList
114 for _, pid := range *prevIdCache[incident.AlertKey] {
115 if incident.Id > pid {
116 incident.PreviousIds = append([]int64{pid}, incident.PreviousIds...)
122 err = d.setIncident(incident, conn)
126 if len(incident.PreviousIds) > 0 {
127 err := d.State().SetIncidentNext(incident.PreviousIds[0], incident.Id)
/dports/net-im/prosody-modules/Community-Modules-bb8459c220c9/mod_incidents_handling/incidents_handling/
H A Dincidents_handling.lib.lua89 local function render_single(incident)
91 …title = string.format("Incident ID: %s - Friendly Name: %s", incident.data.id.text, incident.data.…
92 instructions = incident.data.desc.text,
116incident.data.assessment.lang, incident.data.assessment.severity, incident.data.assessment.complet…
131 if incident.data.expectation then
133 if incident.data.expectation.desc then
138 if incident.type == "request" and incident.status == "open" then
314 incident:tag("RelatedActivity"):up();
321 incident:tag("Assessment")
329 incident:tag("EventData")
[all …]
/dports/devel/awscli/awscli-1.20.61/awscli/examples/ssm-incidents/
H A Dlist-timeline-events.rst1 **To list timeline events of an incident**
3 The following ``command-name`` example lists the timeline events of the specified incident. ::
6 …--incident-record-arn "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6…
17 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
24 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
31 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
38 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
45 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
52 …"incidentRecordArn": "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6e…
57 For more information, see `Incident details <https://docs.aws.amazon.com/incident-manager/latest/us…
H A Dstart-incident.rst1 **To start an incident**
3 The following ``start-incident`` example starts an incident using the specified response plan. ::
5 aws ssm-incidents start-incident \
11 …"incidentRecordArn": "arn:aws:ssm-incidents::682428703967:incident-record/Example-Response-Plan/6e…
14 …n, see `Incident creation <https://docs.aws.amazon.com/incident-manager/latest/userguide/incident-…
H A Ddelete-incident-record.rst1 **To delete an incident record**
3 The following ``delete-incident-record`` example deletes the specified incident record. ::
5 aws ssm-incidents delete-incident-record \
6 …--arn "arn:aws:ssm-incidents::111122223333:incident-record/Example-Response-Plan/6ebcc812-85f5-b7e…
10 For more information, see `Incident tracking <https://docs.aws.amazon.com/incident-manager/latest/u…
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/src/common/dsp/effect/chowdsp/shared/
H A Dwdf.h76 virtual void incident(double x) noexcept = 0;
215 inline void incident(double x) noexcept override in incident() function
277 inline void incident(double x) noexcept override in incident() function
399 inline void incident(double x) noexcept override in incident() function
402 port1->incident(-x); in incident()
440 inline void incident(double x) noexcept override in incident() function
443 port1->incident(-x); in incident()
489 inline void incident(double x) noexcept override in incident() function
492 port1->incident(A * port1->b + B * x); in incident()
553 inline void incident(double x) noexcept override in incident() function
[all …]
/dports/math/py-sympy/sympy-1.9/sympy/physics/optics/
H A Dutils.py120 angle_of_incidence = float(incident)
147 if not isinstance(incident, Matrix):
148 if is_sequence(incident):
149 _incident = Matrix(incident)
150 elif isinstance(incident, Ray3D):
156 _incident = incident
166 if isinstance(incident, Ray3D):
336 refracted = refraction_angle(incident,
342 angle_of_incidence = Float(incident)
354 if is_sequence(incident):
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/controllers/projects/
H A Dincidents_controller.rb17 def incident method in IncidentsController
29 @issue = incident # needed by rendered view
30 return render_404 unless can?(current_user, :read_issue, incident)
32 @noteable = incident
33 @note = incident.project.notes.new(noteable: issuable)
43 IssueSerializer.new(current_user: current_user, project: incident.project)
/dports/games/gnugo/gnugo-3.8/regression/
H A Dowl.tst1 # incident 66
8 # incident 85
15 # incident 159
28 # incident 160
48 # incident 237
53 # incident 235
60 # incident 234
74 # incident 131
81 # incident 133
88 # incident 154
[all …]

12345678910>>...119