Home
last modified time | relevance | path

Searched refs:warningMsg (Results 1 – 25 of 125) sorted by relevance

12345

/dports/security/helib/HElib-1.3.1/tests/
H A DTestLogging.cpp42 std::string warningMsg; in TEST() local
46 warningMsg = penultimateLine(filestream); in TEST()
66 std::string warningMsg; in TEST() local
67 std::getline(filestream, warningMsg); in TEST()
94 std::string warningMsg; in TEST() local
95 std::getline(filestream, warningMsg); in TEST()
97 EXPECT_EQ("This line was first.", warningMsg); in TEST()
99 std::getline(filestream, warningMsg); in TEST()
126 std::string warningMsg; in TEST() local
127 std::getline(filestream, warningMsg); in TEST()
[all …]
/dports/x11/xdtm/xdtm/
H A Dlocicon.c197 char warningMsg[256] ; local
202 (void) sprintf( warningMsg,
208 (void) sprintf( warningMsg,
214 (void) sprintf( warningMsg,
237 char warningMsg[256] ; local
242 (void) sprintf( warningMsg,
244 XtAppWarning( appContext, warningMsg ) ;
248 (void) sprintf( warningMsg,
255 (void) sprintf( warningMsg,
262 (void) sprintf( warningMsg,
[all …]
/dports/devel/clazy/clazy-1.5/src/checks/level1/
H A Doverridden-signal.cpp66 std::string warningMsg; in VisitDecl() local
77warningMsg = "Overriding signal with signal: " + method->getQualifiedNameAsString(); in VisitDecl()
79warningMsg = "Overriding non-signal with signal: " + method->getQualifiedNameAsString(); in VisitDecl()
81warningMsg = "Overriding signal with non-signal: " + method->getQualifiedNameAsString(); in VisitDecl()
84 if (!warningMsg.empty()) { in VisitDecl()
85 emitWarning(decl, warningMsg); in VisitDecl()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Description/
H A DPolicyReader.cs69 metadataImporter.PolicyWarningOccured.Invoke(contextAssertion, warningMsg); in ReadNode()
92 …string warningMsg = SR.GetString(SR.UnrecognizedPolicyElementInNamespace, node.Name, node.Namespac… in ReadNode()
93 metadataImporter.PolicyWarningOccured.Invoke(contextAssertion, warningMsg); in ReadNode()
105 …string warningMsg = SR.GetString(SR.PolicyReferenceMissingURI, MetadataStrings.WSPolicy.Attributes… in ReadNode_PolicyReference()
106 metadataImporter.PolicyWarningOccured.Invoke(contextAssertion, warningMsg); in ReadNode_PolicyReference()
111 string warningMsg = SR.GetString(SR.PolicyReferenceInvalidId); in ReadNode_PolicyReference()
112 metadataImporter.PolicyWarningOccured.Invoke(contextAssertion, warningMsg); in ReadNode_PolicyReference()
119 string warningMsg = SR.GetString(SR.UnableToFindPolicyWithId, idRef); in ReadNode_PolicyReference()
120 metadataImporter.PolicyWarningOccured.Invoke(contextAssertion, warningMsg); in ReadNode_PolicyReference()
206 string warningMsg = SR.GetString(SR.ExceededMaxPolicySize); in IncrementAndLogIfExceededLimit()
[all …]
/dports/graphics/qgis/qgis-3.22.3/src/providers/hana/
H A Dqgshananewconnection.cpp312 QString warningMsg; in testConnection() local
314 warningMsg = tr( "Host name has not been specified." ); in testConnection()
317 warningMsg = tr( "Database has not been specified." ); in testConnection()
319 warningMsg = tr( "User name has not been specified." ); in testConnection()
321 warningMsg = tr( "Password has not been specified." ); in testConnection()
323 warningMsg = tr( "Identifier has not been specified." ); in testConnection()
328 warningMsg = tr( "Driver name/path has not been specified." ); in testConnection()
334 warningMsg = tr( "Driver with name '%1' is not installed." ).arg( driver ); in testConnection()
341 warningMsg = tr( "Driver with name/path '%1' was not found." ).arg( driver ); in testConnection()
348 if ( !warningMsg.isEmpty() ) in testConnection()
[all …]
/dports/games/bzflag-server/bzflag-2.4.22/src/bzfs/
H A DBZWError.cxx48 bool BZWError::warning(std::string warningMsg, int line) in warning() argument
56 if (warningMsg == "") in warning()
57 warningMsg = "unspecified warning"; in warning()
63 std::cerr << ": " << warningMsg << std::endl << std::flush; in warning()
/dports/games/bzflag/bzflag-2.4.22/src/bzfs/
H A DBZWError.cxx48 bool BZWError::warning(std::string warningMsg, int line) in warning() argument
56 if (warningMsg == "") in warning()
57 warningMsg = "unspecified warning"; in warning()
63 std::cerr << ": " << warningMsg << std::endl << std::flush; in warning()
/dports/net/concourse-fly/concourse-6.7.1/fly/commands/
H A Dclear_task_cache.go29 warningMsg := fmt.Sprintf("!!! this will remove the task cache(s) for `%s/%s`, task step `%s`",
32 warningMsg += fmt.Sprintf(", at `%s`", command.CachePath)
34 warningMsg += "\n"
35 fmt.Println(warningMsg)
/dports/misc/concourse/concourse-6.7.2/fly/commands/
H A Dclear_task_cache.go29 warningMsg := fmt.Sprintf("!!! this will remove the task cache(s) for `%s/%s`, task step `%s`",
32 warningMsg += fmt.Sprintf(", at `%s`", command.CachePath)
34 warningMsg += "\n"
35 fmt.Println(warningMsg)
/dports/www/py-weboob/weboob-2.0/weboob/browser/tests/
H A Dform.py90 warningMsg = "Form has more than one submit input, you" + \
94 assert warningMsg in str(w[-1].message)
103 warningMsg = "Form had a submit element provided, but" + \
107 assert warningMsg in str(w[-1].message)
/dports/science/py-dipy/dipy-1.4.1/dipy/reconst/
H A Divim.py342 warningMsg = "Bounds are violated for leastsq fitting. "
343 warningMsg += "Returning parameters from linear fit"
344 warnings.warn(warningMsg, UserWarning)
430 warningMsg = "x0 obtained from linear fitting is not feasibile"
431 warningMsg += " as initial guess for leastsq while estimating "
432 warningMsg += "f and D_star. Using parameters from the "
433 warningMsg += "linear fit."
434 warnings.warn(warningMsg, UserWarning)
505 warningMsg = "x0 is unfeasible for leastsq fitting."
506 warningMsg += " Returning x0 values from the linear fit."
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/audio/
H A Dmididrv.cpp209 …Common::String warningMsg = Common::String::format(_("The selected audio device '%s' was not found… in detectDevice() local
210 GUI::MessageDialog dialog(warningMsg); in detectDevice()
221 …Common::String warningMsg = Common::String::format(_("The selected audio device '%s' cannot be use… in detectDevice() local
222 GUI::MessageDialog dialog(warningMsg); in detectDevice()
257 …Common::String warningMsg = Common::String::format(_("The preferred audio device '%s' was not foun… in detectDevice() local
258 GUI::MessageDialog dialog(warningMsg); in detectDevice()
272 …Common::String warningMsg = Common::String::format(_("The preferred audio device '%s' cannot be us… in detectDevice() local
273 GUI::MessageDialog dialog(warningMsg); in detectDevice()
/dports/games/residualvm/residualvm-0.3.1/audio/
H A Dmididrv.cpp209 …Common::String warningMsg = Common::String::format(_("The selected audio device '%s' was not found… in detectDevice() local
210 GUI::MessageDialog dialog(warningMsg); in detectDevice()
221 …Common::String warningMsg = Common::String::format(_("The selected audio device '%s' cannot be use… in detectDevice() local
222 GUI::MessageDialog dialog(warningMsg); in detectDevice()
257 …Common::String warningMsg = Common::String::format(_("The preferred audio device '%s' was not foun… in detectDevice() local
258 GUI::MessageDialog dialog(warningMsg); in detectDevice()
272 …Common::String warningMsg = Common::String::format(_("The preferred audio device '%s' cannot be us… in detectDevice() local
273 GUI::MessageDialog dialog(warningMsg); in detectDevice()
/dports/misc/valentina/valentina-5b7e98bf48a86e3c444423a9f03533440a39aad9/src/libs/vpatterndb/
H A Dcalculator.cpp125 qreal Calculator::Warning(const QString &warningMsg, qreal value) in Warning() argument
127 VAbstractApplication::VApp()->IsPedantic() ? throw qmu::QmuParserWarning(warningMsg) : in Warning()
128 … qWarning() << VAbstractApplication::warningMessageSignature + warningMsg; in Warning()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.tools.resources/src/org/eclipse/core/tools/resources/markers/
H A DMarkerView.java66 protected String warningMsg; field in MarkerView
247 warningMsg = null; in inputChanged()
260 warningMsg = "Could not obtain an IResource from: " + newInput; in inputChanged()
268 warningMsg = "No selection found"; in inputChanged()
270 warningMsg = "Select one resource to view its markers."; in inputChanged()
282 warningMsg = "Could not obtain an IResource from: " + selected; in inputChanged()
294 warningMsg = "No markers found for: " + resource.getFullPath(); in findResourceMarkers()
310 if (warningMsg != null) { in getElements()
311 message[0] = warningMsg; in getElements()
366 if (warningMsg != null) in getImage()
/dports/devel/go-bindata/go-bindata-3.1.3/vendor/golang.org/x/tools/internal/lsp/source/
H A Ddiagnostics.go57 var warningMsg string
59 warningMsg, err = checkCommonErrors(ctx, snapshot.View(), f.URI())
92 return nil, warningMsg, err
96 return nil, warningMsg, err
103 return reports, warningMsg, nil
/dports/sysutils/istio/istio-1.6.7/vendor/golang.org/x/tools/internal/lsp/source/
H A Ddiagnostics.go57 var warningMsg string
59 if warningMsg, err = checkCommonErrors(ctx, snapshot.View(), f.URI()); err != nil {
99 return nil, warningMsg, err
103 return nil, warningMsg, err
110 return reports, warningMsg, nil
/dports/games/scummvm/scummvm-2.5.1/audio/
H A Dmididrv.cpp219 Common::U32String warningMsg = Common::U32String::format( in detectDevice() local
222 GUI::MessageDialog dialog(warningMsg); in detectDevice()
233 Common::U32String warningMsg = Common::U32String::format( in detectDevice() local
236 GUI::MessageDialog dialog(warningMsg); in detectDevice()
271 Common::U32String warningMsg = Common::U32String::format( in detectDevice() local
274 GUI::MessageDialog dialog(warningMsg); in detectDevice()
288 Common::U32String warningMsg = Common::U32String::format( in detectDevice() local
291 GUI::MessageDialog dialog(warningMsg); in detectDevice()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/assetexporterplugin/
H A Dexportnotification.cpp54 void ExportNotification::addWarning(const QString &warningMsg) in addWarning() argument
56 addTask(Task::Warning, warningMsg); in addWarning()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/golang.org/x/tools/internal/lsp/
H A Ddiagnostics.go30 reports, warningMsg, err := source.Diagnostics(ctx, view, f, view.Options().DisabledAnalyses)
34 if warningMsg != "" {
37 Message: warningMsg,
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/golang.org/x/tools/tools-5eefd052ad72/internal/lsp/
H A Ddiagnostics.go36 reports, warningMsg, err := source.Diagnostics(ctx, view, gof, view.Options().DisabledAnalyses)
40 if warningMsg != "" {
43 Message: warningMsg,
/dports/security/keepassxc/keepassxc-2.6.6/src/fdosecrets/widgets/
H A DSettingsWidgetFdoSecrets.cpp241 m_ui->warningMsg->setHidden(true); in SettingsWidgetFdoSecrets()
242 m_ui->warningMsg->setCloseButtonVisible(false); in SettingsWidgetFdoSecrets()
338 m_ui->warningMsg->showMessage( in checkDBusName()
345 m_ui->warningMsg->showMessage( in checkDBusName()
351 m_ui->warningMsg->hideMessage(); in checkDBusName()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/nomad/structs/
H A Dfuncs.go22 var warningMsg multierror.Error
25 multierror.Append(&warningMsg, warn)
29 if len(warningMsg.Errors) == 0 {
34 warningMsg.ErrorFormat = warningsFormatter
35 return warningMsg.Error()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/hashicorp/vault/vendor/github.com/hashicorp/nomad/nomad/structs/
H A Dfuncs.go23 var warningMsg multierror.Error
26 multierror.Append(&warningMsg, warn)
30 if len(warningMsg.Errors) == 0 {
35 warningMsg.ErrorFormat = warningsFormatter
36 return warningMsg.Error()
/dports/devel/go-bindata/go-bindata-3.1.3/vendor/golang.org/x/tools/internal/lsp/
H A Ddiagnostics.go44 …reports, warningMsg, err := source.Diagnostics(ctx, snapshot, f, snapshot.View().Options().Disable…
48 if warningMsg != "" {
51 Message: warningMsg,

12345