- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 66 for getegid (0.06 seconds)
-
api/go1.2.txt
pkg syscall (netbsd-386), func Setegid(int) error pkg syscall (netbsd-386), func Seteuid(int) error pkg syscall (netbsd-386), func Setgid(int) error pkg syscall (netbsd-386), func Setgroups([]int) error pkg syscall (netbsd-386), func Setpgid(int, int) error pkg syscall (netbsd-386), func Setpriority(int, int, int) error pkg syscall (netbsd-386), func Setregid(int, int) error
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Oct 18 04:36:59 GMT 2013 - 1.9M bytes - Click Count (1) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
* * @see jcifs.internal.CommonServerMessageBlockRequest#createCancel() */ @Override public CommonServerMessageBlockRequest createCancel() { return new Smb2CancelRequest(getConfig(), getMid(), getAsyncId()); } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#split() */ @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 7.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
assertNotNull(cancelRequest); assertTrue(cancelRequest instanceof SmbComNtCancel); // Verify the cancel request has the correct MID assertEquals(12345, cancelRequest.getMid()); } @Test @DisplayName("Test writeParameterWordsWireFormat for primary NT transaction") void testWriteParameterWordsWireFormatPrimary() { byte[] dst = new byte[256];
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/RequestTest.java
} @Override public void setResponse(CommonServerMessageBlockResponse msg) { this.response = (TestResponse) msg; } @Override public long getMid() { return mid; } @Override public void setMid(long mid) { this.mid = mid; } @Override public int getCommand() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.5K bytes - Click Count (0) -
src/main/java/jcifs/dcerpc/DcerpcBinding.java
* @return the endpoint */ public String getEndpoint() { return this.endpoint; } /** * @return the uuid */ UUID getUuid() { return this.uuid; } /** * @return the major */ int getMajor() { return this.major; } /** * @return the minor */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
*/ public final int getTid() { return this.tid; } /** * @param tid * the tid to set */ @Override public final void setTid(final int tid) { this.tid = tid; } /** * Gets the process identifier * @return the pid */ public final int getPid() { return this.pid; }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 38.9K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbFileHandleImplTest.java
when(tree.isConnected()).thenReturn(true); assertTrue(h.isValid()); h.markClosed(); assertFalse(h.isValid()); } @Test @DisplayName("getFid/getFileId throw SmbException when invalid") void getters_throw_whenInvalid() { when(cfg.isTraceResourceUsage()).thenReturn(false); stubValidTree(1L, true, true);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java
this.largeFile = largeFile; } /** * Returns the process ID associated with this lock range. * * @return the process ID */ public int getPid() { return this.pid; } /** * Returns the starting byte offset of the lock range. * * @return the starting byte offset */ public long getByteOffset() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
} /** * * @return a cancel request */ @Override public CommonServerMessageBlockRequest createCancel() { return new SmbComNtCancel(getConfig(), (int) getMid()); } @Override protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; if (this.getCommand() != SMB_COM_NT_TRANSACT_SECONDARY) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbPipeInputStream.java
return ((SrvPipePeekResponse) resp.getOutputData()).getReadDataAvailable(); } final TransPeekNamedPipe req = new TransPeekNamedPipe(th.getConfig(), this.handle.getUncPath(), fd.getFid()); final TransPeekNamedPipeResponse resp = new TransPeekNamedPipeResponse(th.getConfig()); th.send(req, resp, RequestParam.NO_RETRY);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.8K bytes - Click Count (0)