- Sort Score
- Result 10 results
- Languages All
Results 1661 - 1670 of 6,799 for _return (0.08 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionContainsTester.java
assertTrue("contains(present) should return true", collection.contains(e0())); } public void testContains_no() { assertFalse("contains(notPresent) should return false", collection.contains(e3())); } @CollectionFeature.Require(ALLOWS_NULL_QUERIES) public void testContains_nullNotContainedButQueriesSupported() { assertFalse("contains(null) should return false", collection.contains(null)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.1K bytes - Viewed (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainServerSocketFactory.java
} @Override public ServerSocket createServerSocket() throws IOException { return new UnixDomainServerSocket(); } @Override public ServerSocket createServerSocket(int port) throws IOException { return createServerSocket(); } @Override public ServerSocket createServerSocket(int port, int backlog) throws IOException { return createServerSocket(); } @Override public ServerSocket createServerSocket(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Feb 12 16:33:52 UTC 2019 - 3.1K bytes - Viewed (0) -
tensorflow/c/eager/c_api_unified_experimental_eager.cc
TFE_Context* c_ctx = TFE_NewContext(options, s); if (TF_GetCode(s) != TF_OK) { return nullptr; } return wrap(static_cast<AbstractContext*>(unwrap(c_ctx))); } TF_AbstractTensor* TF_CreateAbstractTensorFromEagerTensor(TFE_TensorHandle* t, TF_Status* s) { return wrap(static_cast<AbstractTensorHandle*>(unwrap(t))); }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jun 25 04:40:46 UTC 2020 - 3.2K bytes - Viewed (0) -
guava/src/com/google/common/graph/PredecessorsFunction.java
* * <pre>{@code * someGraphAlgorithm(startNode, MyNode::getParents); * }</pre> * * <p>If you have some other mechanism for returning the predecessors of a node, or one that doesn't * return a {@code Iterable<? extends N>}, then you can use a lambda to perform a more general * transformation: * * <pre>{@code * someGraphAlgorithm(startNode, node -> ImmutableList.of(node.mother(), node.father())); * }</pre>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
afterSessionStart(session); } catch (MavenExecutionException e) { return addExceptionToResult(result, e); } try { chainedWorkspaceReader.addReader(lookup.lookup(WorkspaceReader.class, ReactorReader.HINT)); } catch (LookupException e) { return addExceptionToResult(result, e); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFileAuthenticationCB.java
public FileAuthenticationDbm asDBMeta() { return FileAuthenticationDbm.getInstance(); } @Override public String asTableDbName() { return "file_authentication"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
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
@Override public PathMappingDbm asDBMeta() { return PathMappingDbm.getInstance(); } @Override public String asTableDbName() { return "path_mapping"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
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 RelatedContentDbm asDBMeta() { return RelatedContentDbm.getInstance(); } @Override public String asTableDbName() { return "related_content"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
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
@Override public ClickLogDbm asDBMeta() { return ClickLogDbm.getInstance(); } @Override public String asTableDbName() { return "click_log"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiate.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.9K bytes - Viewed (0)