- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 813 for Components (0.08 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ProtoLookup.java
private final Map<Class<?>, Object> components = new HashMap<>(); public ProtoLookup build() { return new ProtoLookup(components); } public <T> Builder addMapping(Class<T> type, T component) { requireNonNull(type, "type"); requireNonNull(component, "component"); if (components.put(type, component) != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java
int count; @Param({"0", "1", "16", "32", "100"}) int componentLength; private Iterable<String> components; @BeforeExperiment void setUp() { String component = Strings.repeat("a", componentLength); String[] raw = new String[count]; Arrays.fill(raw, component); components = Arrays.asList(raw); } /** {@link Joiner} with a string delimiter. */ @Benchmark
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.9K bytes - Viewed (0) -
architecture/tests/integration.md
### Ambient Integration Tests - **Location**: `tests/integration/ambient` - **Purpose**: Tests related to the Ambient mode, including components like `ztunnel`. - **Focus**: 1. Configuration and communication of Ambient components. 1. Interaction between `ztunnel` and Ambient components. 1. Validation of zero-trust security policies.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 00:57:44 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/resources/esflute_config.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="esclient.xml"/> <!-- The components of DBFlute Runtime. --> <component name="invokerAssistant" class="org.codelibs.fess.es.common.ImplementedInvokerAssistant"/> <component name="behaviorCommandInvoker" class="org.dbflute.bhv.core.BehaviorCommandInvoker"/> <!-- The components of Behavior. -->
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Nov 28 12:59:14 UTC 2018 - 2.7K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/container.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="fessCrawler"> <component class="org.lastaflute.di.naming.StyledNamingConvention"> </component> <!-- Container --> <component name="crawlerContainer" class="org.codelibs.fess.crawler.container.LastaCrawlerContainer"> </component>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 418 bytes - Viewed (0) -
src/main/resources/fess_ldap.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="ldapManager" class="org.codelibs.fess.ldap.LdapManager"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 24 06:09:55 UTC 2015 - 259 bytes - Viewed (0) -
src/main/resources/fess_se.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="scriptEngineFactory" class="org.codelibs.fess.script.ScriptEngineFactory"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Oct 21 12:16:01 UTC 2024 - 279 bytes - Viewed (0) -
src/main/resources/crawler_es+crawlerThread.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="fessCrawler"> <!-- Crawler Thread --> <component name="crawlerThread" class="org.codelibs.fess.crawler.FessCrawlerThread" instance="prototype" > </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jan 28 04:42:09 UTC 2016 - 342 bytes - Viewed (0) -
src/main/resources/crawler/log.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components namespace="fessCrawler"> <include path="crawler/container.xml" /> <component name="logHelper" class="org.codelibs.fess.helper.CrawlerLogHelper"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 11 06:51:14 UTC 2015 - 333 bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/parallel_device_lib.cc
TF_DataType dtype = TFE_TensorHandleDataType(components[0].get()); // Verify that the TensorHandle's shape and dtype match all of the component // shapes and dtypes. for (TensorHandlePtr& component : components) { TFE_TensorHandleGetStatus(component.get(), status); if (!status->status.ok()) { return nullptr; } if (TFE_TensorHandleDataType(component.get()) != dtype) { TF_SetStatus(status, TF_INTERNAL,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 25.9K bytes - Viewed (0)