- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 390 for representam (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFile.java
* represents is a server. */ public static final int TYPE_SERVER = 0x04; /** * Returned by {@link #getType()} if the resource this {@code SmbFile} * represents is a share. */ public static final int TYPE_SHARE = 0x08; /** * Returned by {@link #getType()} if the resource this {@code SmbFile} * represents is a named pipe. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
cmd/storage-datatypes.go
//go:generate msgp -file=$GOFILE // DeleteOptions represents the disk level delete options available for the APIs type DeleteOptions struct { BaseOptions Recursive bool `msg:"r"` Immediate bool `msg:"i"` UndoWrite bool `msg:"u"` // OldDataDir of the previous object OldDataDir string `msg:"o,omitempty"` // old data dir used only when to revert a rename() } // BaseOptions represents common options for all Storage API calls
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 17.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.api.services; import org.apache.maven.api.annotations.Nullable; /** * Represents a hierarchical trace of nested requests within a session, enabling correlation between * session events and their originating operations in the application code. The trace structure * supports the following key features: *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
/** * Array of input character sequences that will be mapped to the output sequence. * These represent the original/current input values for this mapping rule. */ private final String[] inputs; /** * The output character sequence that input characters will be mapped to. * This represents the original/current output value for this mapping rule. */ private final String output; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
<type>String</type> <description>The groupId when this directory represents "groupId/artifactId" or "groupId/artifactId/version".</description> </field> <field> <name>artifactId</name> <version>1.0.0+</version> <type>String</type> <description>The artifactId when this directory represents "groupId/artifactId" or "groupId/artifactId/version".</description> </field>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbException.java
import java.io.StringWriter; import jcifs.smb1.util.Hexdump; /** * There are hundreds of error codes that may be returned by a CIFS * server. Rather than represent each with it's own <code>Exception</code> * class, this class represents all of them. For many of the popular * error codes, constants and text messages like "The device is not ready" * are provided. * <p>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
int LIST_ITEM = 2; int COMBINATION_ITEM = 5; int compareTo(Item item); int getType(); boolean isNull(); } /** * Represents a numeric item in the version item list that can be represented with an int. */ private static class IntItem implements Item { private final int value; public static final IntItem ZERO = new IntItem();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/jcifs/SID.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * A Windows SID is a numeric identifier used to represent Windows * accounts. SIDs are commonly represented using a textual format such as * <code>S-1-5-21-1496946806-2192648263-3843101252-1029</code> but they may * also be resolved to yield the name of the associated Windows account
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
* is an ArrayList of SIDs represents the local groups that the account is * a member of. * * This method is designed to assist with computing access control for a * given user when the target object's ACL has local groups. Local groups * are not listed in a user's group membership (e.g. as represented by the * tokenGroups constructed attribute retrieved via LDAP). *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/URLUtil.java
} /** * Opens a URL and returns an {@link InputStream}. * * @param url * The URL. Must not be {@literal null}. * @return An {@link InputStream} to read the resource represented by the URL. */ public static InputStream openStream(final URL url) { assertArgumentNotNull("url", url); try { final URLConnection connection = url.openConnection();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.8K bytes - Viewed (0)