- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 640 for Sheather (0.03 sec)
-
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
* @param isDirect whether to use direct transmission * @throws IOException if an I/O error occurs */ protected abstract void doSendFragment(byte[] buf, int off, int length, boolean isDirect) throws IOException; /** * Receives a DCERPC fragment from the remote endpoint * @param buf the buffer to receive the fragment * @param isDirect whether to use direct reception
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
tests/prepared_stmt_test.go
} // Wait for 40 seconds to give the statements in the cache enough time to expire. time.Sleep(time.Second * 40) // Assert whether the connection pool of tx is successfully converted to the *gorm.PreparedStmtDB type. AssertEqual(t, ok, true) // Assert whether the number of statement keys stored in the PreparedStmtDB is 0 after 40 seconds. // If it is not 0, it means the statements in the cache have not expired as expected.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
final ServerMessageBlock2Request<Smb2SessionSetupResponse> req) { return new Smb2SessionSetupResponse(tc.getConfig()); } /** * Sets whether this request is for session binding * * @param sessionBinding * the sessionBinding to set */ public void setSessionBinding(final boolean sessionBinding) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
* @see org.apache.maven.api.Session#parseVersionRange(String) * @since 4.0.0 */ @Experimental public interface VersionRange { /** * Determines whether the specified version is contained within this range. * * @param version the version to test, must not be {@code null} * @return {@code true} if this range contains the specified version, {@code false} otherwise
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java
public String handlerScript; /** Boost value for documents from this data source */ @Required @ValidateTypeFailure public Float boost; /** Whether this configuration is enabled (true/false) */ @Required @Size(max = 5) public String available; /** Access permissions for documents from this data source */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
private String[] dialects; /** * Creates a new SMB1 negotiate request to establish protocol parameters. * * @param config the CIFS configuration * @param signingEnforced whether SMB signing is enforced */ public SmbComNegotiate(final Configuration config, final boolean signingEnforced) { super(config, SMB_COM_NEGOTIATE); this.signingEnforced = signingEnforced;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java
} } /** * Executes the statement. * * @param ps * {@link PreparedStatement}. Must not be {@literal null}. * @return Whether the result is a {@link ResultSet}. * @throws SQLRuntimeException * If a {@link SQLException} occurs. * @see PreparedStatement#execute() */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
private final Configuration config; private final boolean unicode; /** * Constructs a file both directory info. * * @param config the configuration * @param unicode whether to use unicode encoding */ public FileBothDirectoryInfo(final Configuration config, final boolean unicode) { this.config = config; this.unicode = unicode; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
* @return the file extension or an empty string if none, never {@code null} * @see ArtifactCoordinates#getExtension() */ @Nonnull String getExtension(); /** * Determines whether this artifact uses a snapshot version. * * @return {@code true} if the artifact is a snapshot, {@code false} otherwise * @see org.apache.maven.api.Session#isVersionSnapshot(String) */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
} } } else { /* * We'll call the user callback or collect the values only when all inputs complete, * regardless of whether some failed. This lets us avoid calling expensive methods like * Future.get() when we don't need to (specifically, for whenAllComplete().call*()), and it * lets all futures share the same listener. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 16K bytes - Viewed (0)