- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 246 for registeredID (0.08 seconds)
-
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
*/ public class IngestFactory { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(IngestFactory.class); /** Array of registered ingesters, sorted by priority */ private Ingester[] ingesters = {}; /** * Default constructor. */ public IngestFactory() { // Default constructor } /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/DisposableUtil.java
* </p> * * @author koichik */ public abstract class DisposableUtil { /** * Do not instantiate. */ protected DisposableUtil() { } /** Registered {@link Disposable} */ protected static final Deque<Disposable> disposables = newLinkedList(); /** * Registers a disposable resource. * * @param disposableCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3K bytes - Click Count (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java
* base for all providers that register such extensions. * <p> * Implementations of this interface are discovered through the Java ServiceLoader mechanism. * Each implementation must be registered in a {@code META-INF/services/} file corresponding * to the specific provider interface being implemented. * <p> * Example implementation for a custom language provider: * <pre>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 2.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TypeRegistry.java
import org.apache.maven.api.annotations.Nonnull; /** * Access to {@link Type} registry. * <p> * This registry provides access to all registered artifact types, both standard types * provided by Maven and custom types registered through SPI provider implementations. * * @since 4.0.0 */ @Experimental public interface TypeRegistry extends ExtensibleEnumRegistry<Type> { /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 1.7K bytes - Click Count (0) -
internal/event/target/mysql_test.go
import ( "database/sql" "slices" "testing" ) // TestPostgreSQLRegistration checks if sql driver // is registered and fails otherwise. func TestMySQLRegistration(t *testing.T) { var found bool if slices.Contains(sql.Drivers(), "mysql") { found = true } if !found { t.Fatal("mysql driver not registered") }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 1.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
@Test void testStateTransitions() { assertEquals(WitnessRegistrationState.REGISTERING, registration.getState()); registration.setState(WitnessRegistrationState.REGISTERED); assertEquals(WitnessRegistrationState.REGISTERED, registration.getState()); registration.setState(WitnessRegistrationState.UNREGISTERING); assertEquals(WitnessRegistrationState.UNREGISTERING, registration.getState());Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This factory maintains a registry of data store implementations and provides methods * to register, retrieve, and discover available data stores. * * <p>Data stores are registered by name and class name, allowing flexible lookup. * The factory also supports dynamic discovery of data store plugins by scanning * JAR files for data store configurations.</p> *
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
internal/config/subnet/config.go
// Transport configured with proxy_url if set optionally. transport http.RoundTripper // The subnet base URL BaseURL string } var configLock sync.RWMutex // Registered indicates if cluster is registered or not func (c *Config) Registered() bool { configLock.RLock() defer configLock.RUnlock() return len(c.APIKey) > 0 }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
WitnessRegisterResponse response = rpcClient.register(request); if (response != null && response.isSuccess()) { registration.setState(WitnessRegistrationState.REGISTERED); registration.setContextHandle(response.getContextHandle()); registrations.put(registration.getRegistrationId(), registration);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.8K bytes - Click Count (0) -
schema/model_test.go
} type ( mytime time.Time myint int mybool = bool ) type AdvancedDataTypeUser struct { ID sql.NullInt64 Name *sql.NullString Birthday sql.NullTime RegisteredAt mytime DeletedAt *mytime Active mybool Admin *mybool } type BaseModel struct { ID uint CreatedAt time.Time CreatedBy *intCreated: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Thu Jan 06 07:02:53 GMT 2022 - 1.1K bytes - Click Count (0)