- Sort Score
- Result 10 results
- Languages All
Results 1251 - 1260 of 1,857 for constructs (0.37 sec)
-
src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java
@BeforeEach void setUp() { fileBasicInfo = new FileBasicInfo(); } @Test @DisplayName("Test default constructor") void testDefaultConstructor() { // Verify default values assertEquals(0L, fileBasicInfo.getCreateTime()); assertEquals(0L, fileBasicInfo.getLastAccessTime());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
* @since 12.0 */ @GwtIncompatible public abstract class ForwardingNavigableMap<K extends @Nullable Object, V extends @Nullable Object> extends ForwardingSortedMap<K, V> implements NavigableMap<K, V> { /** Constructor for use by subclasses. */ protected ForwardingNavigableMap() {} @Override protected abstract NavigableMap<K, V> delegate(); @Override public @Nullable Entry<K, V> lowerEntry(@ParametricNullness K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
* @since 12.0 */ @GwtIncompatible public abstract class ForwardingNavigableMap<K extends @Nullable Object, V extends @Nullable Object> extends ForwardingSortedMap<K, V> implements NavigableMap<K, V> { /** Constructor for use by subclasses. */ protected ForwardingNavigableMap() {} @Override protected abstract NavigableMap<K, V> delegate(); @Override public @Nullable Entry<K, V> lowerEntry(@ParametricNullness K key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
setSuppliedWorkstation(suppliedWorkstation); } /** * Creates a Type-1 message using the given raw Type-1 material. * * @param material * The raw Type-1 material used to construct this message. * @throws IOException * If an error occurs while parsing the material. */ public Type1Message(final byte[] material) throws IOException { parse(material); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
cmd/config-migrate.go
func Load(configFile string, data any) (quick.Config, error) { return quick.LoadConfig(configFile, globalEtcdClient, data) } func readConfigWithoutMigrate(ctx context.Context, objAPI ObjectLayer) (config.Config, error) { // Construct path to config.json for the given bucket. configFile := path.Join(minioConfigPrefix, minioConfigFile) configFiles := []string{ getConfigFile(), getConfigFile() + ".deprecated", configFile, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryAdapterIteratorTest.java
void setUp() { lenient().when(fileEntry.getName()).thenReturn("test"); } @Test @DisplayName("Iterator without filter - simple case") void iteratorWithoutFilter() { // Setup: constructor calls advance() once when(delegate.hasNext()).thenReturn(true, false); when(delegate.next()).thenReturn(fileEntry); TestIterator iterator = new TestIterator(null); // Verify iteration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
*/ public class CorsHandlerFactory { /** * Creates a new instance of CorsHandlerFactory. */ public CorsHandlerFactory() { // Default constructor } private static final Logger logger = LogManager.getLogger(CorsHandlerFactory.class); /** * Map of origin patterns to their corresponding CORS handlers. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
* and DI container integration. */ public class GroovyEngine extends AbstractScriptEngine { private static final Logger logger = LogManager.getLogger(GroovyEngine.class); /** * Default constructor for GroovyEngine. */ public GroovyEngine() { super(); } @Override public Object evaluate(final String template, final Map<String, Object> paramMap) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Partially.java
* <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some * restrictions</i>. */ @Retention(RetentionPolicy.CLASS) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD}) @Documented @interface GwtIncompatible { String value(); } private Partially() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
// =================================================================================== // Constructor // =========== public FessUserBean(final FessUser user) { this.user = user; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0)