- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 875 for zeroed (0.04 sec)
-
src/test/java/jcifs/config/MultiChannelConfigurationTest.java
assertEquals(1, config.getChannelBindingPolicy()); } @Test void testEdgeCaseValues() throws CIFSException { Properties props = new Properties(); // Test zero and negative values props.setProperty("jcifs.smb.client.maxChannels", "0"); PropertyConfiguration config = new PropertyConfiguration(props);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java
ArithmeticException.class, () -> BigDecimalMath.roundToDouble(input, UNNECESSARY)); } } } public void testRoundToDouble_zero() { new RoundToDoubleTester(BigDecimal.ZERO).setExpectation(0.0, values()).test(); } public void testRoundToDouble_oneThird() { new RoundToDoubleTester( BigDecimal.ONE.divide(BigDecimal.valueOf(3), new MathContext(50, HALF_EVEN)))Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
// Service accessors assertEquals("cifs", auth.getService()); auth.setService(""); assertEquals("", auth.getService()); // Lifetime accessors (edge: zero/negative) auth.setUserLifeTime(0); assertEquals(0, auth.getUserLifeTime()); auth.setUserLifeTime(-1); assertEquals(-1, auth.getUserLifeTime()); auth.setLifeTime(0);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
assertEquals(0, message.retval); } @Test @DisplayName("Should handle zero sam pointer correctly") void testDecodeOutZeroSamPointer() throws NdrException { // Given: Message with non-null sam and zero pointer in response samr.SamrSamArray samArray = spy(new samr.SamrSamArray());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
assertEquals(0, message.retval); } @Test @DisplayName("Should handle zero sam pointer correctly") void testDecodeOutZeroSamPointer() throws NdrException { // Given: Message with non-null sam and zero pointer in response samr.SamrSamArray samArray = spy(new samr.SamrSamArray());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
finisher_api.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrPolicyHandleTest.java
verify(mockHandle, times(1)).sendrecv(any(MsrpcSamrCloseHandle.class)); } @Test void testClose_SmbExceptionOnClose() throws IOException { // Test case: close() with non-zero retval from MsrpcSamrCloseHandle, should throw SmbException String server = "testServer"; int access = 123; int errorRetval = 12345; // Simulate an error code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
srvsvc.ShareInfo502 info502 = new srvsvc.ShareInfo502(); byte[] securityDescriptorBytes = new byte[20]; securityDescriptorBytes[0] = 1; // revision // Rest are zeros - no DACL info502.security_descriptor = securityDescriptorBytes; info502.sd_size = securityDescriptorBytes.length; // Replace info field
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/srvsvcTest.java
} @Test void testShareInfo0DecodeWithNonNullNetname() throws NdrException { srvsvc.ShareInfo0 shareInfo0 = new srvsvc.ShareInfo0(); when(mockNdrBuffer.dec_ndr_long()).thenReturn(1); // non-zero pointer when(mockDeferredBuffer.dec_ndr_string()).thenReturn("DecodedShare"); shareInfo0.decode(mockNdrBuffer); assertEquals("DecodedShare", shareInfo0.netname);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
COPY ./app /app/app ``` ### Raspberry Pi et autres architectures Si vous utilisez Docker sur un Raspberry Pi (qui a un processeur ARM) ou toute autre architecture, vous pouvez créer un `Dockerfile` à partir de zéro, basé sur une image de base Python (qui est multi-architecture) et utiliser Uvicorn seul. Dans ce cas, votre `Dockerfile` pourrait ressembler à ceci : ```Dockerfile FROM python:3.7 RUN pip install fastapi uvicorn
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 7.5K bytes - Viewed (0)