- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 215 for grpc (0.02 sec)
-
cmd/metacache-manager.go
// checkMetacacheState should be used if data is not updating. // Should only be called if a failure occurred. func (o listPathOptions) checkMetacacheState(ctx context.Context, rpc *peerRESTClient) error { // We operate on a copy... o.Create = false c, err := rpc.GetMetacacheListing(ctx, o) if err != nil { return err } cache := *c if cache.status == scanStateNone || cache.fileNotFound { return errFileNotFound
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc; /** * Unicode string type wrapper * */ public class UnicodeString extends rpc.unicode_string { boolean zterm; /** * Constructs a UnicodeString with zero termination option. * * @param zterm * whether the string should be zero terminated */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcException.java
*/ package jcifs.smb1.dcerpc; import java.io.IOException; import java.io.PrintWriter; import java.io.StringWriter; import jcifs.smb1.smb1.WinError; import jcifs.smb1.util.Hexdump; /** * DCE/RPC exception class for SMB1 compatibility */ public class DcerpcException extends IOException implements DcerpcError, WinError { static String getMessageByDcerpcError(final int errcode) { int min = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
/** * Abstract base class for DCERPC handles providing core RPC functionality. * This class manages DCE/RPC protocol bindings and communications over SMB transport. */ public abstract class DcerpcHandle implements DcerpcConstants { /** * Default constructor for DcerpcHandle. * Initializes the DCE/RPC handle for protocol operations. */ protected DcerpcHandle() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcConstants.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc; /** * DCE/RPC protocol constants for SMB1 compatibility */ public interface DcerpcConstants { /** * NDR syntax UUID for DCE/RPC protocol */ UUID DCERPC_UUID_SYNTAX_NDR = new UUID("8a885d04-1ceb-11c9-9fe8-08002b104860"); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcBind.java
*/ package jcifs.dcerpc; import jcifs.dcerpc.ndr.NdrBuffer; import jcifs.dcerpc.ndr.NdrException; /** * DCE/RPC bind request message implementation. * This class handles the binding process for establishing DCE/RPC communication channels. * * @author mbechler */ public class DcerpcBind extends DcerpcMessage {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
void testConstructorInitialization() { // Verify level is set to 200 for DFS root enumeration assertEquals(200, dfsRootEnum.level); // Verify DCE/RPC message properties assertEquals(0, dfsRootEnum.getPtype()); assertEquals(DcerpcConstants.DCERPC_FIRST_FRAG | DcerpcConstants.DCERPC_LAST_FRAG, dfsRootEnum.getFlags()); // Verify DFS enumeration structure
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
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 } /** * Gets the DCE/RPC syntax identifier for the DFS interface
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
class samrTest { @Mock private NdrBuffer mockNdrBuffer; @Mock private NdrBuffer mockDeferredBuffer; @Mock private rpc.policy_handle mockPolicyHandle; @Mock private rpc.sid_t mockSidT; @Mock private rpc.unicode_string mockUnicodeString; @Mock private lsarpc.LsarSidArray mockLsarSidArray; @BeforeEach void setUp() {
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/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
// Output parameters for WitnessRegister private byte[] contextHandle; /** * Creates a new WitnessRegister RPC message. */ public WitnessRegisterMessage() { super(WITNESS_REGISTER); this.contextHandle = new byte[20]; // Standard DCE/RPC context handle size } /** * Sets the witness protocol version. * * @param version the witness protocol version
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.6K bytes - Viewed (0)