- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 3,004 for During (0.04 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsBoostDocumentRuleCB.java
public BoostDocumentRuleCB acceptPK(String id) { assertObjectNotNull("id", id); BsBoostDocumentRuleCB cb = this; cb.query().docMeta().setId_Equal(id); return (BoostDocumentRuleCB) 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/BsElevateWordCB.java
public ElevateWordCB acceptPK(String id) { assertObjectNotNull("id", id); BsElevateWordCB cb = this; cb.query().docMeta().setId_Equal(id); return (ElevateWordCB) 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 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsRequestHeaderCB.java
public RequestHeaderCB acceptPK(String id) { assertObjectNotNull("id", id); BsRequestHeaderCB cb = this; cb.query().docMeta().setId_Equal(id); return (RequestHeaderCB) 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 - 7K bytes - Viewed (0) -
cni/pkg/nodeagent/pod_cache.go
func (p *podNetnsCache) Take(uid string) Netns { // lock current pod map p.mu.Lock() defer p.mu.Unlock() if ns, ok := p.currentPodCache[uid]; ok { delete(p.currentPodCache, uid) // already in cache return ns.Netns } return nil } func openNetnsInRoot(hostMountsPath string) func(nspath string) (NetnsCloser, error) { return func(nspath string) (NetnsCloser, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 17:18:11 UTC 2024 - 4.3K bytes - Viewed (0) -
internal/config/errors-utils.go
type Err struct { msg string detail string action string hint string } // Clone returns a new Err struct with the same information func (u Err) Clone() Err { return Err{ msg: u.msg, detail: u.detail, action: u.action, hint: u.hint, } } // Error returns the error message func (u Err) Error() string { if u.detail == "" { if u.msg != "" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 3.8K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/MinimalSetTest.java
* * @author Regina O'Dell */ public class MinimalSetTest extends TestCase { public static Test suite() { return SetTestSuiteBuilder.using( new TestStringSetGenerator() { @Override protected Set<String> create(String[] elements) { return MinimalSet.of(elements); } }) .named("MinimalSet") .withFeatures(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.4K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidCertificateChainCleaner.kt
val extensions = try { X509TrustManagerExtensions(trustManager) } catch (iae: IllegalArgumentException) { // X509TrustManagerExtensions checks for checkServerTrusted(X509Certificate[], String, String) null } return when { extensions != null -> AndroidCertificateChainCleaner(trustManager, extensions) else -> null } } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/MinimalCollectionTest.java
* @author Kevin Bourrillion */ public class MinimalCollectionTest extends TestCase { public static Test suite() { return CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override public Collection<String> create(String[] elements) { // TODO: MinimalCollection should perhaps throw for (Object element : elements) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
* they can return ASCII characters that match real hostnames. */ private fun String.asciiToLowercase(): String { return when { isAscii() -> lowercase(Locale.US) // This is an ASCII string. else -> this } } /** Returns true if the [String] is ASCII encoded (0-127). */ private fun String.isAscii() = length == utf8Size().toInt() /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 7.7K bytes - Viewed (0) -
tensorflow/c/c_api_function.cc
// Process output names. std::vector<string> output_names_vec; if (output_names) { output_names_vec.reserve(noutputs); for (int i = 0; i < noutputs; ++i) { output_names_vec.push_back(string(output_names[i])); } } // Process control output names. std::vector<string> control_output_names_vec; if (control_output_names) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 13.7K bytes - Viewed (0)