- Sort Score
- Result 10 results
- Languages All
Results 981 - 990 of 1,544 for implemented (0.15 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2QueryInfoRequest extends ServerMessageBlock2Request<Smb2QueryInfoResponse> implements RequestWithFileId { private byte infoType; private byte fileInfoClass; private int outputBufferLength; private int additionalInformation; private int queryFlags; private byte[] fileId;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 10:41:31 UTC 2021 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2ReadRequest extends ServerMessageBlock2Request<Smb2ReadResponse> implements RequestWithFileId { /** * */ public static byte SMB2_READFLAG_READ_UNBUFFERED = 0x1; /** * */ public static int SMB2_CHANNEL_NONE = 0x0; /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
import jcifs.internal.smb2.ServerMessageBlock2Response; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2TreeConnectResponse extends ServerMessageBlock2Response implements TreeConnectResponse { /** * */ public static final byte SMB2_SHARE_TYPE_DISK = 0x1; /** * */ public static final byte SMB2_SHARE_TYPE_PIPE = 0x2; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon May 23 14:35:20 UTC 2022 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmSsp.java
* <p> * Also, read <a * href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and * the Network Explorer Servlet</a> related information. */ @Deprecated public class NtlmSsp implements NtlmFlags { /** * Calls the static {@link #authenticate(CIFSContext, HttpServletRequest, * HttpServletResponse, byte[])} method to perform NTLM authentication * for the specified servlet request.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
/** * @author mbechler * @param <T> * request type * */ public abstract class ServerMessageBlock2Request <T extends ServerMessageBlock2Response> extends ServerMessageBlock2 implements CommonServerMessageBlockRequest, Request<T> { private T response; private Integer overrideTimeout; /** * @param config */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
/** * {@link HashFunction} adapter for {@link Checksum} instances. * * @author Colin Decker */ @Immutable @ElementTypesAreNonnullByDefault final class ChecksumHashFunction extends AbstractHashFunction implements Serializable { private final ImmutableSupplier<? extends Checksum> checksumSupplier; private final int bits; private final String toString; ChecksumHashFunction(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:05:16 UTC 2024 - 4.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java
import org.eclipse.aether.repository.LocalRepositoryManager; import org.eclipse.aether.repository.RemoteRepository; /** */ @Deprecated public class LegacyLocalRepositoryManager implements LocalRepositoryManager { private final LocalRepository repository; public LegacyLocalRepositoryManager(File basedir) { this.repository = new LocalRepository(basedir.getAbsoluteFile(), "legacy"); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
* * @see ActivationOS * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named("os") @Singleton @Deprecated(since = "4.0.0") public class OperatingSystemProfileActivator implements ProfileActivator { private static final String REGEX_PREFIX = "regex:"; @Override public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java
* * TODO: It would be nice to replace the Docbook portion of this with Asciidoc so that it could be * generated in the same way as the user manual with cross-links between them. */ public class GradleDslReferencePlugin implements Plugin<Project> { @Override public void apply(Project project) { ProjectLayout layout = project.getLayout(); TaskContainer tasks = project.getTasks();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 5.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java
* limitations under the License. */ package gradlebuild.docs.dsl.docbook; import java.util.*; /** * Normalises and cleans up HTML to convert it to XML semantics. */ public class HtmlToXmlJavadocLexer implements JavadocLexer { private final JavadocLexer lexer; private final Set<String> blockElements = new HashSet<String>(); private final Set<String> blockContent = new HashSet<String>();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 5.8K bytes - Viewed (0)