- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 635 for booth (0.04 sec)
-
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
} @Test @DisplayName("Should successfully encrypt and decrypt with refactored methods") void testRefactoredEncryptionDecryption() throws Exception { // Given - Use same key for both encryption and decryption in test // In production, client would use clientEncKey/serverDecKey and server would use serverEncKey/clientDecKey
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* This class provides methods to retrieve paths for configuration files, templates, dictionaries, * thumbnails, plugins, and other resources required by the Fess search engine. * It supports both regular deployment and Docker container environments. * */ public class ResourceUtil { /** Environment variable name for overriding the configuration path */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
buffer = createValidResponseBuffer(0, 0x2, 0, 0); response.readBytesWireFormat(buffer, 0); assertTrue(response.isShareDfs()); // Test with both DFS flags response = new Smb2TreeConnectResponse(mockConfig); buffer = createValidResponseBuffer(0, 0x3, 0, 0); response.readBytesWireFormat(buffer, 0); assertTrue(response.isShareDfs());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
cmd/bucket-object-lock.go
// For objects in "Compliance" mode, retention date cannot be shortened, and mode cannot be altered. // For objects with legal hold header set, the s3:PutObjectLegalHold permission is expected to be set // Both legal hold and retention can be applied independently on an object
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:25 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
// Test path with trailing backslash (should be stripped) request.setPath("test\\directory\\"); assertEquals("\\test\\directory", request.getPath()); // Test path with both leading and trailing backslash request.setPath("\\test\\directory\\"); assertEquals("\\test\\directory", request.getPath()); // Test single backslash request.setPath("\\");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
/** * Helper class for managing related content configurations. * This class provides functionality to load, cache, and retrieve related content * based on search queries and virtual host configurations. It supports both exact * term matching and regex pattern matching for flexible content association. */ public class RelatedContentHelper extends AbstractConfigHelper { /** * Default constructor for RelatedContentHelper.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
when(smbTree.unwrap(CustomSmbTree.class)).thenReturn(customTree); doNothing().when(smbTree).close(); doNothing().when(customTree).close(); // Unwrap then close both CustomSmbTree unwrapped = smbTree.unwrap(CustomSmbTree.class); smbTree.close(); unwrapped.close(); verify(smbTree).unwrap(CustomSmbTree.class); verify(smbTree).close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn
done | \ tr '\n' ' ' fi } MAVEN_PROJECTBASEDIR="`find_maven_basedir "$@"`" MAVEN_OPTS="$MAVEN_OPTS `concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config"`" LAUNCHER_JAR=`echo "$MAVEN_HOME"/boot/plexus-classworlds-*.jar` LAUNCHER_CLASS=org.codehaus.plexus.classworlds.launcher.Launcher # For Cygwin and MinGW, switch paths to Windows format before running java(1) command if $cygwin || $mingw ; then
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 24 09:49:07 UTC 2025 - 7.7K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
sets x <- y if on == 1, and does nothing otherwise. // // Both operands must have the same announced length. // //go:norace func (x *Nat) assign(on choice, y *Nat) *Nat { // Eliminate bounds checks in the loop. size := len(x.limbs) xLimbs := x.limbs[:size] yLimbs := y.limbs[:size] mask := ctMask(on) for i := 0; i < size; i++ { xLimbs[i] ^= mask & (xLimbs[i] ^ yLimbs[i]) } return x } // add computes x += y and returns the carry. // // Both operands must have the same announced length. // //go:norace...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
// Decode into second instance FileInternalInfo secondInstance = new FileInternalInfo(); secondInstance.decode(encodedBuffer, 0, encodedBuffer.length); // Verify both instances have same values assertEquals(firstInstance.getIndexNumber(), secondInstance.getIndexNumber()); assertEquals(expectedIndexNumber, secondInstance.getIndexNumber()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)