- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 1,023 for _methods_ (0.04 sec)
-
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
Field handleField = DcerpcPipeHandle.class.getDeclaredField("handle"); handleField.setAccessible(true); handleField.set(handle, mockSmbPipeHandleInternal); // Setup real method calls for the methods we want to test - use lenient to avoid unnecessary stubbing lenient().when(handle.getTransportContext()).thenCallRealMethod(); lenient().when(handle.getServer()).thenCallRealMethod();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.h
const TF_DataType* values, int num_values); // Checks the tensorflow::NodeDef built via the methods above to see if it can // run on device_type. TF_CAPI_EXPORT extern void TF_AttrBuilderCheckCanRunOnDevice( TF_AttrBuilder* builder, const char* device_type, TF_Status* status);
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* <td>characters</td> * <td>×</td> * </tr> * </table> * <p> * Methods that take {@link InputStream}/{@link OutputStream}/{@link Reader}/{@link Writer} as arguments do not call {@link Closeable#close()} on the arguments. The caller is responsible for closing them. * </p> * <p> * Any {@link IOException} thrown by these methods is wrapped and thrown as an {@link IORuntimeException}. * </p> * * @author koichik
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
// So we just verify that compression/decompression works correctly assertNotNull(compressed); assertTrue(compressed.length > 0); } // Helper methods for creating mock objects private SearchRequestParams createMockSearchRequestParams() { return new MockSearchRequestParams(); } // Mock classes
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
import java.util.HashMap; import java.util.Map; import jcifs.util.Encdec; import jcifs.util.Strings; /** * NDR (Network Data Representation) buffer for encoding and decoding DCE/RPC messages. * This class provides methods for reading and writing primitive types and strings * in NDR format for DCE/RPC communication. */ public class NdrBuffer { private int referent; private Map<Object, Entry> referents;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
* may be queried with the <code>toDisplayString</code>, <code>getDomainName</code>, and <code>getAccountName</code> * methods. */ @Override public void resolveSids(final CIFSContext tc, final String authorityServerName, final jcifs.SID[] sids) throws CIFSException { final ArrayList<SID> list = new ArrayList<>(sids.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
@Mock private Configuration mockConfig; private BaseContext context; @BeforeEach void setUp() throws CIFSException { // Setup mock configuration with required methods when(mockConfig.getDefaultUsername()).thenReturn(null); when(mockConfig.getDefaultPassword()).thenReturn(null); when(mockConfig.getDefaultDomain()).thenReturn(null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/hu/docs/index.md
{"item_id": 5, "q": "somequery"} ``` Máris létrehoztál egy API-t ami: * HTTP kéréseket fogad a `/` és `/items/{item_id}` _útvonalakon_. * Mindkét _útvonal_ a `GET` műveletet használja (másik elnevezés: HTTP _metódus_). * A `/items/{item_id}` _útvonalnak_ van egy _path paramétere_, az `item_id`, aminek `int` típusúnak kell lennie. * A `/items/{item_id}` _útvonalnak_ még van egy opcionális, `str` típusú _query paramétere_ is, a `q`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 20.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
import jcifs.dcerpc.ndr.NdrException; import jcifs.dcerpc.ndr.NdrLong; import jcifs.dcerpc.ndr.NdrObject; /** * DCE/RPC interface for Distributed File System (DFS) operations. * Provides structures and methods for DFS management and enumeration. */ @SuppressWarnings("all") public class netdfs { /** * Default constructor for netdfs */ public netdfs() { // Default constructor }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
if (!e.getMessage().contains(message)) { fail("expected <" + e.getMessage() + "> to contain <" + message + ">"); } } /** * Test class with valid equals and hashCode methods. Testers created with instances of this class * should always pass. */ private static class ValidTestObject { private final int aspect1; private final int aspect2;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 13.1K bytes - Viewed (0)