- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 117 for BASIC (0.01 sec)
-
src/main/java/jcifs/internal/fscc/BasicFileInformation.java
*/ package jcifs.internal.fscc; import jcifs.internal.SmbBasicFileInfo; /** * File System Control Code (FSCC) interface for Basic File Information. * Combines SMB basic file info with FSCC file information capabilities, * providing access to fundamental file metadata used in SMB file system operations. * * @author mbechler */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
private String domainController; /** Flag to enable load balancing across domain controllers */ private boolean loadBalance; /** Flag to enable basic authentication */ private boolean enableBasic; /** Flag to allow insecure basic authentication */ private boolean insecureBasic; /** The authentication realm */ private String realm; @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
/** Configuration key for allowing unsecure basic authentication. */ protected static final String SPNEGO_ALLOW_UNSECURE_BASIC = "spnego.allow.unsecure.basic"; /** Configuration key for allowing basic authentication. */ protected static final String SPNEGO_ALLOW_BASIC = "spnego.allow.basic"; /** Configuration key for pre-authentication password. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/jcifs/http/NtlmServlet.java
private String domainController; /** Flag to enable load balancing across domain controllers */ private boolean loadBalance; /** Flag to enable basic authentication */ private boolean enableBasic; /** Flag to allow insecure basic authentication */ private boolean insecureBasic; /** The authentication realm */ private String realm; /** The CIFS context for transport operations */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
filter.doFilter(request, response, filterChain); // Should only offer NTLM, not Basic auth verify(response).setHeader("WWW-Authenticate", "NTLM"); verify(response, never()).addHeader(eq("WWW-Authenticate"), eq("Basic realm=\"TestRealm\"")); } @Test void testDoFilter_ntlmType1Message() throws Exception {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
* Default implementation delegates to the basic process method. * * @param target the document data to process * @param params the data store parameters * @return the processed document data */ public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) { return process(target); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * Represents the FILE_BASIC_INFORMATION structure used in SMB2/3 file system control code (FSCC) operations. * This structure contains basic file information including creation time, last access time, last write time, * change time, and file attributes for querying and setting file metadata. */ public class FileBasicInfo implements BasicFileInformation {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java
this.fessConfig = fessConfig; } // =================================================================================== // Basic Handling // ============== @Override protected TimeZone getCentralTimeZone() { return FessUserTimeZoneProcessProvider.centralTimeZone;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
verify(session, never()).setAttribute(anyString(), any()); } } /** * Test the service method with a valid Basic Authorization header. * Simulates a successful Basic authentication. * @throws ServletException * @throws IOException * @throws CIFSException */ @Test void testService_BasicAuth_Success() throws Exception {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformer.java
*/ package org.codelibs.fess.crawler.transformer.impl; import org.codelibs.fess.crawler.transformer.Transformer; /** * An abstract base class for transformers. * Provides basic implementation for managing the transformer's name. * */ public abstract class AbstractTransformer implements Transformer { /** * Creates a new instance of AbstractTransformer. */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.5K bytes - Viewed (0)