Questions tagged [owner]

209 questions
3
votes
2 answers

C#: What does 'owner' mean when used as argument of a class?

In the class below what does the "owner" argument do to both myClass and the base class? public class Base { public myClass(owner) : base (owner) { } }
Arthur Mamou-Mani
  • 2,303
  • 10
  • 43
  • 69
3
votes
2 answers

Is it safe to use HTTPS without SSL certificates for my own domains?

I'd like to run some encrypted connections between some of my own servers. One can use Curl (or some other mechanism) to connect using HTTPS without SSL certificate verification. I'm using PHP, but the language probably isn't significant for this…
Martijn
  • 3,696
  • 2
  • 38
  • 64
2
votes
2 answers

C# query for process owner (Windows 7 x64)

I would like to know how to query for a process's owner in (or via) C#. I've tried the example at http://www.codeproject.com/KB/cs/processownersid.aspx. WMI: Can query all process and their owners, but it's far too slow. WIN32: Fast, but I get a…
BoggleKing
  • 23
  • 1
  • 4
2
votes
1 answer

Postgres: Get owner of all schemas

I want to find out what the owner is of my postgres database schema. I tried select * from information_schema.schemata s order by schema_name But when I use a visual database client for our postgres database, there appear to be more schemas than…
2
votes
2 answers

Get the owner of a guild with discord.py

I'm trying to access the owner of the guild of using ctx.guild.owner and I also tried ctx.message.guild.owner however both return None. I want the owner to be formatted with their username first then their tag, like Bob#1029. Is there a way to do…
Dylan
  • 55
  • 1
  • 8
2
votes
1 answer

What is the owner in a oracle database?

When talking about relational database the concepts I've learned are that there exists schema, table, attribute. We can prefix the table name with the schema name and the attribute with the table name (even incl. schema). When looking on an Oracle…
Will
  • 2,858
  • 6
  • 33
  • 50
2
votes
2 answers

Docker changes owner of local files mounted as volume

I cannot find anywhere answer why docker changes owner of files mounted as volume. Before docker run: $ ls -la total 56 drwxrwxr-x 9 ci ci 4096 Mar 13 21:13 . drwxrwxr-x 4 ci ci 4096 Mar 13 21:12 .. -rw-rw-r-- 1 ci ci 1108 Mar 13 21:13…
Taz
  • 5,755
  • 6
  • 26
  • 63
2
votes
2 answers

Testing with java owner aeonbits

I've been using java OWNER for property based configuration. I've create a static method public static final ApplicationConfiguration config = ConfigFactory.create(ApplicationConfiguration.class, System.getProperties(),…
oroblam
  • 109
  • 4
  • 17
2
votes
1 answer

WPF window owner property issue

I have a WPF MainWindow where I can open a second one as follow, taking as an example this post: var win = new CalibrationWindow(){Owner = this}; win.ShowDialog(); Rarely happens that I have the following runtime exception "cannot set owner…
ctt_it
  • 339
  • 1
  • 6
  • 22
2
votes
2 answers

How to promote a collaborator to have owner rights

How can I promote a collaborator in a github-Projekt to get admin/owner rights?
Michael
  • 6,823
  • 11
  • 54
  • 84
2
votes
2 answers

C get owner and group of file/directory

I getting the error segmentation fault when I run my C program. This is my code sample to get the owner and the group of the file/directory: struct stat sb; char outstr[200]; stat(file_or_dir_name, &sb); struct passwd…
ZerOne
  • 1,296
  • 6
  • 20
  • 40
2
votes
1 answer

Set dbo as default schema for all new tables

I have a database installed on four different production servers. Each server has its own different user. When I create a new table using create statement on these servers every server sets / prepends their user name e.g. Create Table tab_1 ...…
haraman
  • 2,744
  • 2
  • 27
  • 50
2
votes
1 answer

Android Wifi Direct: How to send data from Group Owner to the clients?

I've got a problem using wifi direct. I managed to connect 2 devices and send data from the client to the group owner, because the group owner ip is the one that everybody knows. I managed also to find out the IP of the client and pass it to the…
glorfindel
  • 199
  • 3
  • 11
2
votes
2 answers

MS SQL Database Table Prefix from Previous Owner

I have an MS SQL 2000 database that was backed up from a public server and restored at a test location for an upgrade test. The problem is that the user that had access permission on the public server does not exist on the testing server, and now…
Jimbo
  • 22,379
  • 42
  • 117
  • 159
2
votes
0 answers

JavaFX Modal Dialog disappear when owner Stage is iconified/Show

my environment: Linux Suse 12.3, JDK 1.7.0_45, JavaFX 2.2, Compiler Compliance level 1.7. on ButtonAction a modal Dialog is opened, the Dialog Stage has an owner Stage. now dialog is opened but if i iconified the Owner and show it again, the Dialog…
Rami.Q
  • 2,486
  • 2
  • 19
  • 30