- Sort Score
- Result 10 results
- Languages All
Results 1661 - 1670 of 1,878 for constructor (0.06 sec)
-
src/main/java/org/codelibs/core/log/Logger.java
return new JclLoggerAdapterFactory(); } catch (final Throwable ignore) { return new JulLoggerAdapterFactory(); } } /** * Constructs an instance. * * @param clazz * The class to be used as the logging category. */ protected Logger(final Class<?> clazz) { log = factory.getLoggerAdapter(clazz);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
cmd/object-handlers_test.go
for i, testCase := range testCases { // initialize HTTP NewRecorder, this records any mutations to response writer inside the handler. rec := httptest.NewRecorder() // construct HTTP request for Get Object end point. req, err := newTestSignedRequestV4(http.MethodHead, getHeadObjectURL("", testCase.bucketName, testCase.objectName), 0, nil, testCase.accessKey, testCase.secretKey, nil)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 163.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
*/ public static final int SMB2_SESSION_FLAG_ENCRYPT_DATA = 0x4; private int sessionFlags; private byte[] blob; /** * Constructs a SMB2 session setup response with the specified configuration * * @param config * the configuration to use for this response */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java
* * @author mbechler */ public class SmbComSetInformation extends ServerMessageBlock { private final int fileAttributes; private final long lastWriteTime; /** * Constructs a set information request to modify file attributes and modification time. * * @param config the configuration to use * @param filename the name of the file to modify
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
@Resource protected DictionaryManager dictionaryManager; /** The Fess configuration for accessing system settings. */ @Resource protected FessConfig fessConfig; /** * Constructs a new stopwords service. */ public StopwordsService() { // do nothing } /** * Retrieves a list of stopwords for a given dictionary and pager. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
@Resource protected DictionaryManager dictionaryManager; /** The Fess configuration for accessing system settings. */ @Resource protected FessConfig fessConfig; /** * Constructs a new synonym service. */ public SynonymService() { // do nothing } /** * Retrieves a list of synonyms for a given dictionary and pager. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
* * @author mbechler */ public class CIFSContextWrapper implements CIFSContext { private final CIFSContext delegate; private Handler wrappedHandler; /** * Constructs a wrapper around the specified CIFS context. * * @param delegate * context to delegate non-override methods to * */ public CIFSContextWrapper(final CIFSContext delegate) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponse.java
* from the server, including access control information. */ public class NtTransQuerySecurityDescResponse extends SmbComNtTransactionResponse { private SecurityDescriptor securityDescriptor; /** * Constructs an NT transaction query security descriptor response. * @param config the configuration context for this response */ public NtTransQuerySecurityDescResponse(final Configuration config) { super(config);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java
// is a first step. There are several replacements below, in order to normalize // the path character before we operate on the string as a regex input, and // in order to avoid surprises with the File construction... // ------------------------------------------------------------------------------------- String path = System.getProperty(altLocationSysProp); if (path == null || path.isEmpty()) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
/** The locale. */ protected final Locale locale; /** The index indicating the current style. */ protected int index; /** * Constructs an instance. * * @param locale the locale */ public DateFormatIterator(final Locale locale) { this.locale = locale; } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 19.6K bytes - Viewed (0)