- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 108 for get_username (0.07 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
server = result.getServer(); AuthenticationInfo authInfo = new AuthenticationInfo(); authInfo.setUserName(server.getUsername()); authInfo.setPassword(server.getPassword()); authInfo.setPrivateKey(server.getPrivateKey());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.5K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacLogonInfoTest.java
// Use mocking to test getters without complex PAC data creation PacLogonInfo logonInfo = mock(PacLogonInfo.class); // Setup mock responses when(logonInfo.getUserName()).thenReturn(TEST_USERNAME); when(logonInfo.getDomainName()).thenReturn(TEST_DOMAIN); when(logonInfo.getServerName()).thenReturn(TEST_SERVER); when(logonInfo.getLogonTime()).thenReturn(new Date());Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/CredentialsConfig.java
} /** * Gets the username. * * @return the username */ public String getUsername() { return username; } /** * Sets the username. * * @param username the username */ public void setUsername(final String username) { this.username = username; } /** * Gets the password. *Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.6K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java
Authentication authentication = repository.getAuthentication(); assertNotNull(authentication); assertEquals("jason", authentication.getUsername()); assertEquals("abc123", authentication.getPassword()); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
config.setFormParameters(ParameterUtil.parse(getParameters())); } // Credentials の設定 final CredentialsConfig credentials = new CredentialsConfig(); credentials.setUsername(getUsername()); credentials.setPassword(getPassword() == null ? StringUtil.EMPTY : getPassword()); if (Constants.NTLM.equals(scheme)) { credentials.setType(CredentialsType.NTLM);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 5.7K bytes - Click Count (0) -
docs/en/docs/release-notes.md
} class OwnerError(Exception): pass def get_username(): try: yield "Rick" except OwnerError as e: raise HTTPException(status_code=400, detail=f"Owner error: {e}") @app.get("/items/{item_id}") def get_item(item_id: str, username: Annotated[str, Depends(get_username)]): if item_id not in data:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:07:04 GMT 2026 - 631K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
* * @return username at repository */ public String getUsername() { return username; } /** * Set username used to access the repository. * * @param userName the username used to access repository */ public void setUsername(final String userName) { this.username = userName; } /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.1K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
this.port = port; } /** * Returns the username. * @return The username. */ public String getUsername() { return username; } /** * Sets the username. * @param username The username. */ public void setUsername(final String username) { this.username = username; } /** * Returns the password.Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Jan 04 09:30:17 GMT 2026 - 4.7K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java
* Get the proxy username. * * @return username for the proxy server */ public String getUserName() { return userName; } /** * Set the proxy username. * * @param userName username for the proxy server */ public void setUserName(String userName) { this.userName = userName; } /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java
registerModifiedProperty("updatedTime"); this.updatedTime = value; } public String getUsername() { checkSpecifiedProperty("username"); return convertEmptyToNull(username); } public void setUsername(String value) { registerModifiedProperty("username"); this.username = value; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.6K bytes - Click Count (0)