- Sort Score
- Result 10 results
- Languages All
Results 1081 - 1090 of 4,180 for Inject (0.15 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java
/** * Method removeLifecycle. * * @param lifecycle a lifecycle object. */ public void removeLifecycle(Lifecycle lifecycle) { getLifecycles().remove(lifecycle); } // -- void removeLifecycle( Lifecycle ) /** * Set the lifecycles field. * * @param lifecycles a lifecycles object. */ public void setLifecycles(java.util.List<Lifecycle> lifecycles) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
tests/test_tutorial/test_extra_models/test_tutorial003_py310.py
["description", "type", "size"], # TODO: remove when deprecating Pydantic v1 ["description", "size"], ), "type": "object", "properties": { "description": {"title": "Description", "type": "string"}, "type": {"title": "Type", "type": "string", "default": "plane"},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 04 20:47:07 UTC 2023 - 5.3K bytes - Viewed (0) -
tests/test_modules_same_name_body/test_main.py
"schemas": { "Body_compute_b_compute__post": { "title": "Body_compute_b_compute__post", "required": ["a", "b"], "type": "object", "properties": { "a": {"title": "A", "type": "integer"}, "b": {"title": "B", "type": "string"}, }, },
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); } public boolean match(final Map<String, Object> map) { if (map == null || map.isEmpty() || matchExpression == null) { return false; } final Object value = ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(matchExpression, map); if (value instanceof Boolean) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java
} @Override protected Map<String, Object> createTestParam(int id) { fail(); // Unreachable return null; } @Override protected Map<String, Object> getUpdateMap() { fail(); // Unreachable return null; } @Override protected void testRead() { final Map<String, Object> searchBody = new HashMap<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredKeySetMultimap.java
* * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault final class FilteredKeySetMultimap<K extends @Nullable Object, V extends @Nullable Object> extends FilteredKeyMultimap<K, V> implements FilteredSetMultimap<K, V> { FilteredKeySetMultimap(SetMultimap<K, V> unfiltered, Predicate<? super K> keyPredicate) { super(unfiltered, keyPredicate); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 2.2K bytes - Viewed (0) -
internal/logger/target/console/console.go
if entry.API.Args != nil { args := "" if entry.API.Args.Bucket != "" { args = args + "bucket=" + entry.API.Args.Bucket } if entry.API.Args.Object != "" { args = args + ", object=" + entry.API.Args.Object } if entry.API.Args.VersionID != "" { args = args + ", versionId=" + entry.API.Args.VersionID } if len(entry.API.Args.Objects) > 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedMultisets.java
} } private static <E extends @Nullable Object> E getElementOrThrow(@CheckForNull Entry<E> entry) { if (entry == null) { throw new NoSuchElementException(); } return entry.getElement(); } @CheckForNull private static <E extends @Nullable Object> E getElementOrNull(@CheckForNull Entry<E> entry) { return (entry == null) ? null : entry.getElement();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Enums.java
protected String doBackward(T enumValue) { return enumValue.name(); } @Override public boolean equals(@CheckForNull Object object) { if (object instanceof StringConverter) { StringConverter<?> that = (StringConverter<?>) object; return this.enumClass.equals(that.enumClass); } return false; } @Override public int hashCode() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 26 11:56:44 UTC 2023 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsRelatedContentCQ.java
setContent_GreaterThan(content, null); } public void setContent_GreaterThan(String content, ConditionOptionCall<RangeQueryBuilder> opLambda) { final Object _value = content; RangeQueryBuilder builder = regRangeQ("content", ConditionKey.CK_GREATER_THAN, _value); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 63.8K bytes - Viewed (0)