- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,070 for exclude (0.06 sec)
-
compat/maven-model/pom.xml
<exclude>org.apache.maven.model.Dependency#clearManagementKey():METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
fastapi/encoders.py
if isinstance(obj, encoder_type): return encoder_instance(obj) if include is not None and not isinstance(include, (set, dict)): include = set(include) if exclude is not None and not isinstance(exclude, (set, dict)): exclude = set(exclude) if isinstance(obj, BaseModel): # TODO: remove when deprecating Pydantic v1 encoders: Dict[Any, Any] = {}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 21:56:59 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/assemblies/common-bin.xml
<outputDirectory>fess-${project.version}/logs</outputDirectory> <excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- temp --> <fileSet> <directory>src/main/assemblies/files</directory> <outputDirectory>fess-${project.version}/temp</outputDirectory> <excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- es/modules -->
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K bytes - Viewed (0) -
.github/workflows/check-markdown-links.yml
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 14 07:50:42 UTC 2024 - 920 bytes - Viewed (0) -
compat/maven-plugin-api/pom.xml
<configuration> <parameter> <excludes> <exclude>org.apache.maven.monitor.logging.DefaultLog</exclude> <exclude>org.apache.maven.plugin.lifecycle</exclude> <exclude>org.apache.maven.plugin.descriptor.PluginDescriptor#getLifecycleMapping(java.lang.String)</exclude> </excludes> </parameter> </configuration> </plugin>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
tests/test_serialize_response_model.py
"k3": Item(aliased_name="baz", price=2.0, owner_ids=[1, 2, 3]), } @app.get( "/items/valid-exclude-unset", response_model=Item, response_model_exclude_unset=True ) def get_valid_exclude_unset(): return Item(aliased_name="valid", price=1.0) @app.get( "/items/coerce-exclude-unset", response_model=Item, response_model_exclude_unset=True, ) def get_coerce_exclude_unset():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri May 13 23:38:22 UTC 2022 - 4.2K bytes - Viewed (0) -
common/config/.golangci.yml
- G404 issues: # List of regexps of issue texts to exclude, empty list by default. # But independently from this option we use default exclude patterns, # it can be disabled by `exclude-use-default: false`. To list all # excluded by default patterns execute `golangci-lint run --help` exclude: - composite literal uses unkeyed fields # Which dirs to exclude: issues from them won't be reported.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc.xml
<!--<exclude name='ExplicitHashSetInstantiation'/>--> <!--<exclude name='ExplicitCallToAndMethod'/>--> <!--<exclude name='ExplicitCallToOrMethod'/>--> <!--</ruleset-ref>--> <ruleset-ref path='rulesets/braces.xml'/> <ruleset-ref path='rulesets/imports.xml'> <exclude name="ImportFromSunPackages"/> <exclude name="MisorderedStaticImports"/>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml
<!--<exclude name='ExplicitHashSetInstantiation'/>--> <!--<exclude name='ExplicitCallToAndMethod'/>--> <!--<exclude name='ExplicitCallToOrMethod'/>--> <!--</ruleset-ref>--> <ruleset-ref path='rulesets/braces.xml'/> <ruleset-ref path='rulesets/imports.xml'> <exclude name="ImportFromSunPackages"/> <exclude name="MisorderedStaticImports"/>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
public class OpenSearchUrlFilterService extends AbstractCrawlerService implements UrlFilterService { private static final String FILTER_TYPE = "filterType"; private static final String INCLUDE = "include"; private static final String EXCLUDE = "exclude"; protected LoadingCache<String, List<Pattern>> includeFilterCache; protected LoadingCache<String, List<Pattern>> excludeFilterCache;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 6.3K bytes - Viewed (0)