Questions tagged [reserved]

Denotes a resource that is usable only in a pre-determined way. This can reference memory, key words or hardware.

Denotes a resource that is usable only in a pre-determined way. This can reference memory, key words or hardware.

94 questions
1
vote
1 answer

A page fault caused by reserved bit set

As we know, a page fault exception is caused when a process is seeking to access an area of virtual memory that is not mapped to any physical memory, when a write is attempted on a read-only page, when accessing a PTE or PDE with the reserved…
Naruto
  • 315
  • 2
  • 6
  • 13
1
vote
1 answer

Service Stack Client for 3rd party needs a parameter called Public

I have a requirement to call a 3rd party rest api using service stack and this is working fine. But one of the rest api's requires a property called "public" Is there an attribute I can specify to give it another name in the class but use the public…
Chris
  • 319
  • 1
  • 6
  • 17
1
vote
1 answer

Is there any universal way in .net or win api to check if file / folder name is not special reserved one like "COM0", "LPT1" and etc?

Aside of doing crazy cycles like this for every type of port: bool IsGoodFileName(string file_name) { for (int i = 0; i < 256; i++) if (string.Compare(file_name, "COM" + i) == 0) return false; return true; }
Kosmo零
  • 4,001
  • 9
  • 45
  • 88
1
vote
1 answer

Accessing PHP objects using both naming with reserved characters (-,@) and indexes (0)

In PHP figured out how to use {name-with-reserved-chars} notation to access object data after JSON decode but I also have index values as well in the path (like [0]). My attempts to add the index value has returned nothing despite all my attempts…
1
vote
1 answer

Is "selected" a reserved word in jQuery?

jQuery won't return a value for a class I'm using called "selected". If I change the class name to something else it is found. Example: alert($('ul li a').attr("class")); I…
hiester
  • 178
  • 4
  • 12
0
votes
1 answer

NANP phone numbers available for testing

Wikipedia states that 555-01xx are available for use in fictional works. Though this block of 100 numbers can presumably be stretched over all area codes, are there any larger blocks specifically reserved for testing/fictional/other usage, such as…
Iiridayn
  • 1,747
  • 21
  • 43
0
votes
0 answers

Atlassian Bitbucket reserved keywords

I have searched high and low for a list of reserved keywords that are not allowed when naming repositories using Atlassian Bitbucket Data Center. The reason is that if I name a repository 'repos' it fails to load the page properly when looking at…
midasxl
  • 35
  • 5
0
votes
0 answers

batch file to use sed to replace/append strings which contain :: - how?

I have a batch file which uses sed to replace multiple strings in each line of a text file (hosts) then, later, prepend ::[space] at the beginning of each line. Well, that's the goal... sed is used because every line must be kept, not just those…
0
votes
0 answers

Powershell, how to exclude the "\" character in a Regex format

Based to this Topic: How do I replace a line in a file using PowerShell? The Regex to select whatever inside: value=" and "/> is $regex = '(?<=
islogged
  • 9
  • 3
0
votes
0 answers

what is ISO/IEC 14882:2011(E) [reserved.names]/2 means?

first at all, let's see the standard(ISO/IEC 14882:2011(E)) [reserved.names](17.6.4.3) said: 1 The C++ standard library reserves the following kinds of names: — macros — global names — names with external linkage 2 If a program declares or defines…
iTruth
  • 123
  • 7
0
votes
2 answers

'%' express any characters, is there any special character for only one character?

In Oracle '%' stands for any characters in that position. Example: Select * from table where id like '%1' This stands for anything behind the number 1 : XXXXXXXXXXXX1 99999999991. Is there any other character to express only 1 character ?. Example…
Erik
  • 17
  • 5
0
votes
1 answer

In MySql triggers, what is the correct syntax for referring to a column name which is a reserved word?

CREATE TRIGGER `db_name`.`trigger_name` BEFORE DELETE ON `db_name`.`table1_name` FOR EACH ROW BEGIN INSERT INTO `db_name`.`table2_name`(table2_id,`comment`,record_created_date) VALUES (OLD.id, OLD.`comment`, NOW()); END The syntax error…
0
votes
0 answers

Setting an array element with the key 'length'

I am building an array of spellings, and for rapid look-up I want to have the property of each element as the spelling, thus: var spellings=[]; var spelling="fred"; spellings[spelling]="page 1"; This allows me, for any spelling, to retrieve…
peter
  • 195
  • 1
  • 1
  • 10
0
votes
2 answers

Cant extract table data since table name "User" is a reserved name

So my problem is, I am trying to extract a table into this dataframe but I cant since the table named "User" is a reserved word... How could I go about this to get past the problem? Thanks! attachmentDf = (spark.read …
Lasse
  • 17
  • 9
0
votes
0 answers

Hadoop Hive SQL to pull data from a table with a reserved keyword name

my table name is case I am trying select * from .case in the beeline sql but it just won't work! Please advise. Thank you in advance
ARCuber
  • 1
  • 1