- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 246 for registeredID (0.11 seconds)
-
gorm.go
PropagateUnscoped bool // ClauseBuilders clause builder ClauseBuilders map[string]clause.ClauseBuilder // ConnPool db conn pool ConnPool ConnPool // Dialector database dialector Dialector // Plugins registered plugins Plugins map[string]Plugin callbacks *callbacks cacheStore *sync.Map } // Apply update config to new config func (c *Config) Apply(config *Config) error { if config != c { *config = *c
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Tue Aug 26 06:24:29 GMT 2025 - 12.8K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java
return (T) newImplementation(loadImplementation(parseImplementation(parser), defaultClazz)); } /** * Converts the given string to the target type, using {@link TypeConverter}s registered with the {@link Injector}. * * @param value The string value * @param toType The target type * @return Converted instance of the target type */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 15.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Unregisters a previously registered listener. * * @param listener the listener to unregister * @throws NullPointerException if {@code listener} is null */ void unregisterListener(@Nonnull Listener listener); /** * Returns the list of registered listeners. * * @return an immutable collection of listeners, never {@code null}Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 36.5K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/Service.java
* one of the listener's callbacks will execute at once. However, multiple listeners' callbacks * may execute concurrently, and listeners may execute in an order different from the one in which * they were registered. * * <p>RuntimeExceptions thrown by a listener will be caught and logged. Any exception thrown * during {@code Executor.execute} (e.g., a {@code RejectedExecutionException}) will be caught and * logged.
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 12.2K bytes - Click Count (0) -
android/guava/src/com/google/common/net/MediaType.java
/** * <a href="http://en.wikipedia.org/wiki/Embedded_OpenType">Embedded OpenType</a> fonts. This is * <a href="http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject">registered * </a> with the IANA. * * @since 17.0 */ public static final MediaType EOT = createConstant(APPLICATION_TYPE, "vnd.ms-fontobject"); /**
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Oct 02 01:46:40 GMT 2025 - 48K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
// Test bots with special characters - should be normalized to lowercase assertFalse(robotsTxt.allows("/trademark/", "Bot™")); assertFalse(robotsTxt.allows("/registered/", "Bot®")); // Test wildcard user-agent assertFalse(robotsTxt.allows("/default/", "UnknownRandomBot")); } public void testParse_emptyFile() { RobotsTxt robotsTxt;Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 20.6K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
assertSame(processor, testRule.getResponseProcessor()); // Register and verify testRule.register(0); assertTrue(ruleManager.hasRule(testRule)); // Verify registered rule maintains properties Rule registeredRule = ruleManager.getRules().get(0); assertEquals("multiRule", registeredRule.getRuleId()); assertSame(processor, registeredRule.getResponseProcessor());
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 21.9K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.3.md
## Highlights * Authorization: * **Alpha** RBAC authorization API group * Federation * federation api group is now **beta** * Services from all federated clusters are now registered in Cloud DNS (AWS and GCP). * Stateful Apps: * **alpha** PetSets manage stateful apps * **alpha** Init containers provide one-time setup for stateful containers * Updating:
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Dec 24 02:28:26 GMT 2020 - 84K bytes - Click Count (0) -
tensorflow/c/c_api_experimental.cc
// function. Otherwise return nullptr in result and error Status from the // function. // // If `library_filename` has already been loaded, we return a cached handle. // Device and Kernels/Ops are registered as globals when a library is loaded // for the first time. TF_Library* TF_LoadPluggableDeviceLibrary(const char* library_filename, TF_Status* status) {
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Oct 04 05:55:32 GMT 2025 - 29.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* * @return array of available RankFusionSearcher instances */ protected RankFusionSearcher[] getAvailableSearchers() { if (searchers.isEmpty()) { logger.warn("No searchers registered"); return new RankFusionSearcher[0]; } if (availableSearcherNameSet.isEmpty()) { return searchers.toArray(new RankFusionSearcher[0]); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 27.5K bytes - Click Count (0)