- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 2,047 for gets (0.02 sec)
-
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
this.setSubCommand(SmbComTransaction.TRANS2_QUERY_PATH_INFORMATION); } /** * Gets the file information from the response. * * @return the info */ public final FileInformation getInfo() { return this.info; } /** * Gets the file information from the response cast to the specified type. * * @param <T> the type of file information to return
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSignature.java
throw new PACDecodingException("Malformed PAC signature", e); } } /** * Gets the checksum type of this signature. * * @return the checksum type constant */ public int getType() { return this.type; } /** * Gets the checksum data. * * @return the checksum bytes */ public byte[] getChecksum() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
return StringUtil.EMPTY; } /** * Gets the Tomcat configuration path from system properties. * * @return the Tomcat configuration path, or null if not specified */ protected static String getTomcatConfigPath() { return System.getProperty(TOMCAT_CONFIG_PATH); } /** * Sets up the web application context with Fess-specific configurations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/RegularImmutableAsListTest.java
*/ @GwtCompatible @NullMarked public class RegularImmutableAsListTest extends TestCase { /** * RegularImmutableAsList should assume its input is null-free without checking, because it only * gets invoked from other immutable collections. */ public void testDoesntCheckForNull() { ImmutableSet<Integer> set = ImmutableSet.of(1, 2, 3); ImmutableList<Integer> unused =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
// ============== /** * Gets the user bean type class. * * @return the FessUserBean class */ @Override protected Class<FessUserBean> getUserBeanType() { return FessUserBean.class; } /** * Gets the login action type class. * * @return the LoginAction class */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} /** * Gets the path mapping list for a session. * * @param sessionId the session ID * @return the path mapping list */ public List<PathMapping> getPathMappingList(final String sessionId) { if (sessionId == null) { return null; } return pathMappingMap.get(sessionId); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
this.expectInfoType = expectInfoType; this.expectInfoClass = expectInfoClass; } /** * Gets the information returned by the query * * @return the information */ public Decodable getInfo() { return this.info; } /** * Gets the information returned by the query, cast to the specified class type * * @param <T>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
return SmbConstants.TYPE_FILESYSTEM; } /** * @return the fileIndex */ @Override public int getFileIndex() { return this.fileIndex; } /** * Gets the filename. * * @return the filename */ public String getFilename() { return this.filename; } @Override public int getAttributes() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
} /** * Gets the session flags from the response * * @return the sessionFlags */ public int getSessionFlags() { return this.sessionFlags; } /** * Gets the security blob from the session setup response * * @return security blob */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java
@Experimental public interface DependencyResolverResult extends Result<DependencyResolverRequest> { /** * Gets the exceptions that occurred while building the dependency graph. * * @return the exceptions that occurred, never {@code null} */ @Nonnull List<Exception> getExceptions(); /** * Gets the root node of the dependency graph. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 6.3K bytes - Viewed (0)