- Sort Score
- Result 10 results
- Languages All
Results 1401 - 1410 of 5,850 for AsString (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java
* @param activeProjectSelectors A {@link List} of project selectors that must be activated. * @deprecated Use {@link #activateOptionalProject(String)} or {@link #activateRequiredProject(String)} instead. */ @Deprecated public void overwriteActiveProjects(List<String> activeProjectSelectors) { List<ProjectActivationSettings> projects = getProjects(pa -> pa.active).collect(Collectors.toList());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
tests/test_tutorial/test_header_params/test_tutorial001_an.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 3.8K bytes - Viewed (0) -
tests/test_tutorial/test_query_params/test_tutorial005.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/BuildScanUtils.kt
* limitations under the License. */ package common import model.Stage import model.StageName import model.TestCoverage fun buildScanTagParam(tag: String) = """-Dscan.tag.$tag""" fun buildScanCustomValueParam(key: String, value: String) = """-Dscan.value.$key=$value""" fun TestCoverage.asBuildScanCustomValue() =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
assertEquals("[]", FluentIterable.<String>of().toString()); assertEquals( "[yam, bam, jam, ham]", FluentIterable.from(asList("yam", "bam", "jam", "ham")).toString()); } public void testCycle() { FluentIterable<String> cycle = FluentIterable.from(asList("a", "b")).cycle(); int howManyChecked = 0; for (String string : cycle) { String expected = (howManyChecked % 2 == 0) ? "a" : "b";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 30.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFileAuthenticationCB.java
public FileAuthenticationCB acceptPK(String id) { assertObjectNotNull("id", id); BsFileAuthenticationCB cb = this; cb.query().docMeta().setId_Equal(id); return (FileAuthenticationCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsPathMappingCB.java
public PathMappingCB acceptPK(String id) { assertObjectNotNull("id", id); BsPathMappingCB cb = this; cb.query().docMeta().setId_Equal(id); return (PathMappingCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRelatedContentCB.java
public RelatedContentCB acceptPK(String id) { assertObjectNotNull("id", id); BsRelatedContentCB cb = this; cb.query().docMeta().setId_Equal(id); return (RelatedContentCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/bs/BsClickLogCB.java
public ClickLogCB acceptPK(String id) { assertObjectNotNull("id", id); BsClickLogCB cb = this; cb.query().docMeta().setId_Equal(id); return (ClickLogCB) this; } @Override public void acceptPrimaryKeyMap(Map<String, ? extends Object> primaryKeyMap) { acceptPK((String) primaryKeyMap.get("_id")); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
/** * Simply converts the given content to an xml string. * * @param content the object to convert * @return the xml string representation * @throws XmlWriterException if an error occurs during the transformation * @see #fromXmlString(String) */ @Nonnull default String toXmlString(@Nonnull T content) throws XmlWriterException { StringWriter sw = new StringWriter();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0)