- Sort Score
- Result 10 results
- Languages All
Results 331 - 339 of 339 for startsWith (0.16 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
import assertk.assertions.isNotSameAs import assertk.assertions.isNull import assertk.assertions.isTrue import assertk.assertions.matches import assertk.assertions.prop import assertk.assertions.startsWith import assertk.fail import java.io.FileNotFoundException import java.io.IOException import java.io.InterruptedIOException import java.net.CookieManager import java.net.CookiePolicy import java.net.HttpCookie
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
protected void interruptTask() { assertFalse(interruptTaskWasCalled); interruptTaskWasCalled = true; } } private static boolean isWindows() { return OS_NAME.value().startsWith("Windows"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
final Header locationHeader = response.getFirstHeader("location"); if (locationHeader != null) { final String redirectLocation; if (locationHeader.getValue().startsWith("/")) { redirectLocation = constructRedirectLocation(url, locationHeader.getValue()); } else { redirectLocation = locationHeader.getValue();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
if (destPath.startsWith("\\")) { destPath = destPath.substring(1); } // Open the source file for renaming // Use share-relative path for consistency with destination path handling String sourcePath = getUncPath(); if (sourcePath.startsWith("\\")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
tensorflow/c/c_api.cc
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue May 13 06:30:43 UTC 2025 - 102.3K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
checkNotNull(hostAddr); // Decide if this should be an IPv6 or IPv4 address. String ipString; int expectBytes; if (hostAddr.startsWith("[") && hostAddr.endsWith("]")) { ipString = hostAddr.substring(1, hostAddr.length() - 1); expectBytes = 16; } else { ipString = hostAddr; expectBytes = 4; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
putEnv(env, Context.PROVIDER_URL, providerUrl); putEnv(env, Context.SECURITY_PRINCIPAL, principal); putEnv(env, Context.SECURITY_CREDENTIALS, credntials); if (providerUrl != null && providerUrl.startsWith("ldaps://")) { putEnv(env, Context.SECURITY_PROTOCOL, "ssl"); } return env; } /** * Puts a key-value pair to the environment. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
assertThat(call).contains("protocol=http") assertThat(call.lowercase(Locale.US)).contains("scheme=basic") } private fun authCallsForHeader(authHeader: String): List<String> { val proxy = authHeader.startsWith("Proxy-") val responseCode = if (proxy) 407 else 401 val authenticator = RecordingAuthenticator(null) java.net.Authenticator.setDefault(authenticator) server.enqueue( MockResponse
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.ldap_account_filter=Kontofilter labels.ldap_group_filter=Gruppenfilter labels.ldap_memberof_attribute=memberOf-Attribut labels.notification_login=Anmeldeseite labels.notification_search_top=Such-Startseite labels.storage_endpoint=Endpunkt labels.storage_access_key=Zugriffsschlüssel labels.storage_secret_key=Geheimer Schlüssel labels.storage_bucket=Bucket labels.send_testmail=Test-E-Mail senden
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.5K bytes - Viewed (1)