- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 409 for represented (0.06 sec)
-
src/main/java/jcifs/netbios/Name.java
*/ package jcifs.netbios; import jcifs.Configuration; import jcifs.NetbiosName; import jcifs.util.Hexdump; import jcifs.util.Strings; /** * NetBIOS name implementation. * This class represents NetBIOS names used in SMB networking. */ public class Name implements NetbiosName { private static final int TYPE_OFFSET = 31; private static final int SCOPE_OFFSET = 33; /** * Name
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required; import jakarta.validation.constraints.Size; /** * Form class for handling tag operations in storage management. * This form represents tag data including path, name, and associated metadata. */ public class TagForm { /** * The file or directory path associated with this tag. */ @Required public String path;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* Each instance identifies an artifact or version range of artifacts in the Maven repository system.</p> * * <p>{@link org.apache.maven.api.Artifact} instances represent artifacts in the repository. * They are created when <dfn>resolving</dfn> an {@code ArtifactCoordinates} object. Resolving is the process * that selects a particular version and downloads the artifact into the local repository.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/SuggestBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.suggest; import org.codelibs.fess.app.web.admin.suggest.SuggestForm; /** * Represents the request body for suggest API operations. * This class extends {@link SuggestForm} and adds fields for tracking * the number of total, document, and query words. */ public class SuggestBody extends SuggestForm {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationRequest.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal; /** * Interface for SMB protocol negotiation request messages. * Represents the client's request to negotiate SMB protocol version and capabilities * with the server, including security requirements like message signing. * * @author mbechler */ public interface SmbNegotiationRequest {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac; import jcifs.smb.SID; /** * Represents a Security Identifier (SID) with associated attributes within a PAC structure. * This class encapsulates a SID and its attribute flags as used in Kerberos PAC data. */ public class PacSidAttributes {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmChallenge.java
*/ package jcifs.smb1.smb1; import java.io.Serializable; import jcifs.smb1.UniAddress; import jcifs.smb1.util.Hexdump; /** * Represents an NTLM authentication challenge in SMB1 protocol. */ public final class NtlmChallenge implements Serializable { /** * The NTLM challenge bytes received from the server. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
* * @param type1 The Type-1 message which this represents a response to. */ public Type2Message(final Type1Message type1) { this(type1, null, null); } /** * Creates a Type-2 message in response to the given Type-1 message. * * @param type1 The Type-1 message which this represents a response to.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java
package org.codelibs.fess.app.web.api.admin.plugin; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Request body for plugin installation API. * This class represents the data structure for installing a plugin * through the admin REST API. */ public class InstallBody { /** Name of the plugin to install (required, max 100 characters) */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrSmall.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.ndr; /** * Represents an NDR small integer (1 byte unsigned) for DCE/RPC communication. * This class encapsulates a single byte value (0-255) in NDR format. */ public class NdrSmall extends NdrObject { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0)