21 questions
Advice
0
votes
10
replies
254
views
Valid but unspecified state. What is specified then?
The standard says that after a move, an object is in a "valid but unspecified state". I found nothing in the standard on the properties of being in a "specified state" and being in ...
0
votes
1
answer
318
views
model = YourModelClass(input_size, hidden_size, num_layers, output_size) NameError: name 'input_size' is not defined
import torch
import torch.nn as nn
import torch.optim as optim
answer = input()
class YourModelClass(nn.Module):
def __init__(self, input_size, hidden_size, num_layers, output_size):
...
0
votes
0
answers
310
views
Unspecified field types
What is the code for “any unspecified field type is text” in sql?
I’ve tried using replace and I’ve searched multiple sites but I haven’t found a solution
1
vote
1
answer
3k
views
TwinCAT project build fails with unspecified error
My TwinCAT PLC project was working fine, but suddenly one day it could not build at all. The error message is simply "The operation could not be completed. Unspecified error".
I also ...
1
vote
1
answer
135
views
Confusion about [expr.static.cast]/13
I can't understand the quote (specifically, the bold part):
A prvalue of type “pointer to cv1 void” can be converted to a prvalue
of type “pointer to cv2 T”, where T is an object type and cv2 is the
...
0
votes
1
answer
525
views
"Unspecified Exception" when running .command bash script
I've created a bash script to play some music using the afplay command. I used the file extension .command so that it can be opened with a double click in finder. This is an abbreviation of the code.
...
0
votes
1
answer
188
views
OpenCV Unspecified error when calling Hough transform in c++
I'm working on a music recognition Android app, which should recognize music annotations in sheet in real time using camera.
When I try to recognize lines or circles using Hough transform (either ...
0
votes
1
answer
1k
views
Unspecified Error when search a table for a string in sql delphi using parameters - Delphi SQL
there. I am trying to search for a string contained in any column of a sql table by adding all the Fieldnames to the WHERE clause using a for loop. Also I use parameters to protect against SQL ...
1
vote
1
answer
97
views
Visual Studio 2015 enterprise unknown issue
I'm trying to start a new MVC project but I constantly get this message: Unspecified error (Exception from HRESULT: 0X80004005 (E_FAIL))
I have tried almost every thing that I could find on internet ...
0
votes
1
answer
235
views
How to not show "unspecified error" when throwing exception
Somewhere in my code I want to throw an exception to stop its execution( as the possible error in question is deep in the stack). However, when I write`
throw new ArgumentException(
...
4
votes
1
answer
1k
views
Keep getting run-time error VBA
I am trying to get this to log into my website with a main login page and a second One Time Password(OTP) page. But i am getting and error
run-time error '-2147467259 (80004005)':
Automation error
...
0
votes
1
answer
7k
views
VBA - Excel - Automation Error Unspecified Error
So I ran into a slight stumbling block and hopefully here someone can help me. In short, I need to visit a string of webpages (the list of the names on each page are already input, that code works ...
5
votes
3
answers
14k
views
Pass a parent class as an argument?
Is it possible to leave a parent class unspecified until an instance is created?
e.g. something like this:
class SomeParentClass:
# something
class Child(unspecifiedParentClass):
# something
...
0
votes
2
answers
416
views
81002 - Unspecified Method, on chained payment
I'm getting the the following message on a chained adaptive payment call (via PHP). Can anyone see why?
array(5) {
["ACK"]=>
string(7) "Failure"
["L_ERRORCODE0"]=>
string(5) "81002"
[...
-1
votes
1
answer
1k
views
Ply.lex Unspecified token error
Hello I am trying to make a simple lexer, to read KML(google maps). But I have a problem in several parts. And get an "unspecified token error"(ONLY included the part causing the error)
import ply....