Searched refs:user (Results 1 - 25 of 101) sorted by relevance

12345

/openjdk10/nashorn/test/script/basic/8024180/
H A Dglobal_var_shadow.js32 var user = { name: 'foo' };
36 print(user.name);
40 // global user.name 'foo' printed
43 // local user.name 'toto' printed
44 func({ user: { name: 'toto' } });
H A Dscope_no_such_prop.js39 print(user.name);
50 func({ user: { name: 'toto' } });
/openjdk10/jdk/test/sun/net/www/ftptest/
H A DFtpAuthHandler.java38 public boolean authenticate(String user, String password); argument
39 public boolean authenticate(String user, String password, String account); argument
/openjdk10/jdk/test/sun/security/provider/PolicyFile/
H A DSomeExtensionClass.java29 String user = (String) AccessController.doPrivileged(
32 return System.getProperty("user.name");
36 return user;
/openjdk10/jdk/test/sun/security/tools/keytool/
H A Dkeyalg.sh42 $KEYTOOL -genkeypair -alias user -dname CN=User -keyalg RSA -keysize 1024 || exit 2
43 $KEYTOOL -certreq -alias user |
45 $KEYTOOL -printcert > user.dump || exit 3
47 cat user.dump | grep "Signature algorithm name:" | grep SHA1withECDSA || exit 4
48 cat user.dump | grep "Subject Public Key Algorithm:" | grep RSA | grep 1024 || exit 5
/openjdk10/jdk/test/sun/security/mscapi/nonUniqueAliases/
H A DNonUniqueAliases.sh61 certutil -user -delstore MY NonUniqueName
64 certutil -user -addstore MY ${TESTSRC}/nonUniq1.pem
67 certutil -user -addstore MY ${TESTSRC}/nonUniq2.pem
77 certutil -user -delstore MY NonUniqueName
86 certutil -user -delstore MY NonUniqueName
91 certutil -user -delstore MY NonUniqueName
/openjdk10/jdk/src/java.base/share/classes/java/security/acl/
H A DGroup.java33 * represents an entity such as an individual user or a company). <p>
53 * @param user the principal to add to this group.
58 public boolean addMember(Principal user); argument
63 * @param user the principal to remove from this group.
68 public boolean removeMember(Principal user); argument
H A DAclEntry.java38 * an individual user or a group). Additionally, each ACL entry is specified
66 * @param user the principal to be set for this entry.
73 public boolean setPrincipal(Principal user); argument
88 * principal (e.g., a user or a group) will be denied the permission set
H A DAcl.java39 * principal represents an entity such as an individual user or a
199 * @param user the principal whose permission set is to be returned.
204 public Enumeration<Permission> getPermissions(Principal user); argument
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DAuthInfo.java41 private final String user; field in class:AuthInfo
45 public AuthInfo(@NotNull URL url, @NotNull String user, @NotNull String password) { argument
48 this.user = user;
53 return user;
/openjdk10/jdk/src/jdk.jstatd/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteVmManager.java41 * specific user. The ability to detect all possible HotSpot Java Virtual
51 private String user; field in class:RemoteVmManager
67 * Creates a RemoteVmManager instance for the given user.
70 * machines owned by the specified user on the remote system. The
76 * @param user the name of the user
78 public RemoteVmManager(RemoteHost remoteHost, String user) { argument
79 this.user = user;
86 * The set returned by this method depends on the user nam
[all...]
/openjdk10/jdk/src/java.prefs/macosx/classes/java/util/prefs/
H A DMacOSXPreferencesFile.java41 * simultaneous creation of two objects for the same name+user+host triplet
118 private long user; field in class:MacOSXPreferencesFile
122 long user() { return user; } method in class:MacOSXPreferencesFile
129 user = newUser;
134 // Always returns the same object for the given name+user+host
150 // Java user node == CF current user, any host
151 // Java system node == CF any user, current host
204 // Sync only current user preference
450 addNode(String path, String name, long user, long host) argument
452 removeNode(String path, String name, long user, long host) argument
454 addChildToNode(String path, String child, String name, long user, long host) argument
457 removeChildFromNode(String path, String child, String name, long user, long host) argument
460 addKeyToNode(String path, String key, String value, String name, long user, long host) argument
463 removeKeyFromNode(String path, String key, String name, long user, long host) argument
466 getKeyFromNode(String path, String key, String name, long user, long host) argument
469 getChildrenForNode(String path, String name, long user, long host) argument
471 getKeysForNode(String path, String name, long user, long host) argument
473 synchronize(String name, long user, long host) argument
[all...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/frame/
H A DOutgoingHeaders.java43 HttpHeaders user, system; field in class:OutgoingHeaders
47 this.user = hdrs2;
76 return user;
/openjdk10/hotspot/src/os/aix/vm/
H A DosThread_aix.cpp44 _last_cpu_times.sys = _last_cpu_times.user = 0L;
/openjdk10/jdk/src/java.sql/share/classes/javax/sql/
H A DPooledConnectionBuilder.java48 * .user("rafa")
63 * @param username the database user on whose behalf the connection is being
67 PooledConnectionBuilder user(String username); method in interface:PooledConnectionBuilder
H A DXAConnectionBuilder.java48 * .user("rafa")
63 * @param username the database user on whose behalf the connection is being
67 XAConnectionBuilder user(String username); method in interface:XAConnectionBuilder
H A DXADataSource.java64 * user name and password. The connection that is returned is one that
67 * @param user the database user on whose behalf the connection is being made
68 * @param password the user's password
81 XAConnection getXAConnection(String user, String password) argument
H A DConnectionPoolDataSource.java62 * @param user the database user on whose behalf the connection is being made
63 * @param password the user's password
72 PooledConnection getPooledConnection(String user, String password) argument
/openjdk10/jdk/src/java.sql/share/classes/java/sql/
H A DConnectionBuilder.java45 * .user("rafa")
60 * @param username the database user on whose behalf the connection is being
64 ConnectionBuilder user(String username); method in interface:ConnectionBuilder
/openjdk10/jdk/src/java.base/share/classes/sun/net/ftp/
H A DFtpDirEntry.java57 private String user = null; field in class:FtpDirEntry
89 * Returns the user name of the owner of the file as returned by the FTP
90 * server, if provided. This could be a name or a user id (number).
92 * @return a {@code String} containing the user name or
96 return user;
100 * Sets the user name of the owner of the file. Intended mostly to be
103 * @param user The user name of the owner of the file, or {@code null}
107 public FtpDirEntry setUser(String user) { argument
108 this.user
[all...]
/openjdk10/jdk/test/java/rmi/reliability/juicer/
H A DApplicationServer.java47 private AppleUser user; field in class:ApplicationServer
70 * Locate apple user object in registry. The lookup will occur
81 user = (AppleUser) registry.lookup("AppleUser");
82 user.startTest();
89 if (user == null) {
104 user.reportException(e);
109 * Hand apple objects to apple user.
113 user.useApple(apples[i]);
118 user.reportException(e);
/openjdk10/jdk/test/sun/security/validator/
H A Dcertreplace.sh58 # 1. Generate 3 aliases in a keystore: ca, int, user
62 $KT -genkeypair -alias user -dname CN=User -keyalg rsa
64 # 2. Signing: ca -> int -> user
68 $KT -certreq -alias user | $KT -gencert -rfc -alias int \
69 | $KT -import -alias user
73 $KT -export -alias user -rfc > certreplace.certs
82 $KT -delete -alias user
H A Dsamedn.sh58 # 1. Generate 3 aliases in a keystore: ca1, ca2, user. The CAs' startdate
63 $KT -genkeypair -alias user -dname CN=User -keyalg rsa
65 # 2. Signing: ca -> user
67 $KT -certreq -alias user | $KT -gencert -rfc -alias ca1 > samedn1.certs
68 $KT -certreq -alias user | $KT -gencert -rfc -alias ca2 > samedn2.certs
75 # 4. Remove user for cacerts
77 $KT -delete -alias user
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/perf/
H A DPerf.java212 * machine owned by the given user.
216 * owned by the specified user.
218 * @param user A <code>String</code> object containing the
219 * name of the user that owns the target Java
232 public ByteBuffer attach(String user, int lvmid, String mode) argument
236 return attachImpl(user, lvmid, PERF_MODE_RO);
239 return attachImpl(user, lvmid, PERF_MODE_RW);
254 * @param user A <code>String</code> object containing the
255 * name of the user that owns the target Java
267 private ByteBuffer attachImpl(String user, in argument
334 attach(String user, int lvmid, int mode) argument
[all...]
/openjdk10/jdk/test/sun/net/www/protocol/http/
H A DWebGet.java40 static String user = System.getProperty("user"); field in class:WebGet
61 System.out.println("::::: PROVIDING PASSWORD AND USERNAME " + user +":"+pass+" :::::");
62 return (new PasswordAuthentication (user, pass.toCharArray()));

Completed in 269 milliseconds

12345