- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for setNonce (0.85 seconds)
-
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
// When/Then assertThrows(IllegalArgumentException.class, () -> { transformHeader.setNonce(shortNonce); }); assertThrows(IllegalArgumentException.class, () -> { transformHeader.setNonce(longNonce); }); } @Test @DisplayName("Should handle null signature") void testNullSignature() { // When/ThenCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java
return Collections.emptyList(); } }; ComponentUtil.register(requestHeaderService, RequestHeaderService.class.getCanonicalName()); final SetOnce<Map<String, Object>> initParamMapSet = new SetOnce<>(); WebConfig webConfig = new WebConfig(); webConfig.setUserAgent(Constants.CRAWLING_USER_AGENT_PREFIX + "1.0" + Constants.CRAWLING_USER_AGENT_SUFFIX);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
this.setExpression(p.getExpression()); this.setDeprecated(p.getDeprecated()); this.setDefaultValue(p.getDefaultValue()); this.setType(p.getType()); this.setSince(p.getSince()); } // ---------------------------------------------------------------------- // // ---------------------------------------------------------------------- public String getName() {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.1K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
.longOpt("legacy-local-repository") .desc("<deprecated> Use Maven 2 Legacy Local Repository behaviour.") .deprecated(DeprecatedAttributes.builder() .setSince("3.9.1") .setDescription("UNSUPPORTED: Use of this option will make Maven invocation fail.") .get()) .build()); // Deprecated
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Aug 06 04:56:48 GMT 2025 - 17.8K bytes - Click Count (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
this.setInheritedByDefault(md.isInheritedByDefault()); this.setPhase(md.getPhase()); this.setOnlineRequired(md.isOnlineRequired()); this.setProjectRequired(md.isProjectRequired()); this.setSince(md.getSince()); this.setThreadSafe(true); this.setImplementation(md.getImplementation()); try {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 21.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java
.hasArg() .deprecated(DeprecatedAttributes.builder() .setForRemoval(true) .setSince("4.0.0") .setDescription("Use -is,--install-settings instead.") .get()) .get());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Oct 08 07:36:42 GMT 2025 - 21.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
final Smb2TransformHeader transformHeader = Smb2TransformHeader.decode(encryptedMessage, 0); final byte[] associatedData = transformHeader.getAssociatedData(); byte[] nonce = transformHeader.getNonce(); final byte[] authTag = transformHeader.getSignature(); // Extract ciphertext final int ciphertextLength = encryptedMessage.length - Smb2TransformHeader.TRANSFORM_HEADER_SIZE;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 35.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("nonce={}", nonce); } if (StringUtils.isEmpty(nonce) || !nonce.equals(stateData.getNonce())) { throw new SsoLoginException("could not validate nonce"); } } catch (final SsoLoginException e) { throw e; } catch (final Exception e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
public void close() { if (runner != null) { try { client.admin() .indices() .prepareFlush() .setForce(true) .execute() .actionGet(ComponentUtil.getFessConfig().getIndexIndicesTimeout()); } catch (final Exception e) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1)