- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,234 for _type (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
* Artifact type name for a JAR file containing test sources. */ String TEST_JAVA_SOURCE = "test-java-source"; /** * Returns the dependency type id. * The id uniquely identifies this <i>dependency type</i>. * * @return the id of this type, never {@code null}. */ @Nonnull @Override String id(); /** * Returns the dependency type language. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
* The string. Must not be {@literal null}. * @param ctype * The array of character types. Must not be {@literal null} or empty. */ public Tokenizer(final String str, final byte[] ctype) { assertArgumentNotNull("str", str); assertArgumentNotEmpty("ctype", ctype); this.str = str; this.ctype = ctype; } /** * Sets up the character type array.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
public void decode(final NdrBuffer buf) throws NdrException { decode_header(buf); if (this.ptype != 12 && this.ptype != 2 && this.ptype != 3 && this.ptype != 13) { throw new NdrException("Unexpected ptype: " + this.ptype); } if (this.ptype == 2 || this.ptype == 3) { /* Response or Fault */ this.alloc_hint = buf.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcConstants.java
// Packet Types (ptype) /** * Request packet type */ int RPC_PT_REQUEST = 0x00; /** * Ping packet type */ int RPC_PT_PING = 0x01; /** * Response packet type */ int RPC_PT_RESPONSE = 0x02; /** * Fault packet type - indicates an error */ int RPC_PT_FAULT = 0x03; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/DcerpcMessageTest.java
TestMessage m = new TestMessage(); m.ptype = 0; // Request type NdrBuffer buf = new NdrBuffer(new byte[1024], 0); m.encode(buf); buf.setIndex(0); // Decode will throw exception as ptype 0 is not a valid response type assertThrows(NdrException.class, () -> m.decode(buf)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
class MsrpcShareInfo1 extends SmbShareInfo { MsrpcShareInfo1(final srvsvc.ShareInfo1 info1) { this.netName = info1.netname; this.type = info1.type; this.remark = info1.remark; } } /** * Creates a new request to enumerate shares on a server. * * @param server the server name to enumerate shares from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareEnum.java
class MsrpcShareInfo1 extends SmbShareInfo { MsrpcShareInfo1(final srvsvc.ShareInfo1 info1) { this.netName = info1.netname; this.type = info1.type; this.remark = info1.remark; } } /** * Creates a new request to enumerate shares on a server. * * @param server the server name to enumerate shares from */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
@Override public void decode(final NdrBuffer buf) throws NdrException { decode_header(buf); if (ptype != 12 && ptype != 2 && ptype != 3 && ptype != 13) { throw new NdrException("Unexpected ptype: " + ptype); } if (ptype == 2 || ptype == 3) { /* Response or Fault */ alloc_hint = buf.dec_ndr_long(); buf.dec_ndr_short(); /* context id */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
// Verify header encoding including ptype verify(mockBuffer, times(3)).enc_ndr_small(0); // minor version, ptype (REQUEST=0), and flags (all are 0) } @Test @DisplayName("encode should handle non-REQUEST ptype correctly") void testEncodeNonRequestPtype() throws NdrException { message.ptype = DcerpcConstants.RPC_PT_RESPONSE; // 2, not 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0)