- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 393 for failed (0.07 sec)
-
_readme.txt
(outside-sql-test): L56:A execution command of OutsideSqlTest task L57:which executes outside-SQL files and you can check L58:whether the SQLs have correct formats. L59: L60:The directories are for DBFlute tasks: L61:/- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L62:dfprop : Directory for DBFlute properties L63:extlib : Directory for Directory for library extension L64:log : Directory for log files of DBFlute tasks L65:output/doc : Directory for auto-generated documents L66:playsql...github.com/codelibs/fess/dbflute_fess/_readme.txtSat Jul 04 22:46:31 UTC 2015 2.5K bytes -
CustomTrust.java
okhttp3.tls.HandshakeCertificates; L26: L27:public final class CustomTrust { L28: // PEM files for root certificates of Comodo and Entrust. These two CAs are sufficient to view L29: // https://publicobject.com (Comodo) and https://squareup.com (Entrust). But they aren't L30: // sufficient to connect to most HTTPS sites including https://godaddy.com and https://visa.com. L31: // Typically developers will need to get a PEM file from their organization's TLS administrator. L32: final X509Certificate comod...github.com/square/okhttp/samples/guide/src/main...Thu Aug 12 07:26:27 UTC 2021 9.3K bytes -
BsScheduledJob.java
null) { L137: addFieldToSource(sourceMap, "updatedTime", updatedTime); L138: } L139: return sourceMap; L140: } L141: L142: protected void addFieldToSource(Map<String, Object> sourceMap, String field, Object value) { L143: sourceMap.put(field, value); L144: } L145: L146: // =================================================================================== L147: // Basic Override L148:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.3K bytes -
bootstrap.min.js.map
arguments) // eslint-disable-line prefer-rest-params\n }\n return undefined // eslint-disable-line no-undefined\n }\n }\n}\n\nfunction transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n}\n\nfunction setTransitionEndSupport() {\n $.fn.emulateTransitionEnd = transitionEndEmulator\n $.eve...github.com/codelibs/fess/src/main/webapp/js/boo...Sat Jan 11 06:54:28 UTC 2020 189.9K bytes -
HeadersJvmTest.kt
addUnsafeNonAsciiAcceptsUnicodeValue() { L136: val headers = L137: Headers.Builder() L138: .addUnsafeNonAscii("header1", "valué1") L139: .build() L140: assertThat(headers.toString()).isEqualTo("header1: valué1\n") L141: } L142: L143: // Fails on JS, ClassCastException: Illegal cast L144: @Test fun ofMapThrowsOnNull() { L145: assertFailsWith<NullPointerException> { L146: (mapOf("User-Agent" to null) as Map<String, String>).toHeaders() L147: } L148: } L149: L150: @Test fun ...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 5.6K bytes -
LetsEncryptClientTest.kt
Encrypt Root Certificate. L32: */ L33:@Tag("Remote") L34:class LetsEncryptClientTest { L35: @Test fun get() { L36: // These tests wont actually run before Android 8.0 as per L37: // https://github.com/mannodermaus/android-junit5 L38: // Raised https://github.com/mannodermaus/android-junit5/issues/228 to reevaluate L39: val androidMorEarlier = Build.VERSION.SDK_INT <= 23 L40: L41: val clientBuilder = OkHttpClient.Builder() L42: L43: if (androidMorEarlier) { L44: val cert: X509Certificate...github.com/square/okhttp/android-test/src/andro...Mon Jan 08 01:13:22 UTC 2024 4.4K bytes -
postinst
: indicates an upgrade L12: L13: L14: L15:# Sets the default values for fess variables used in this script L16:FESS_USER="${packaging.fess.user}" L17:FESS_GROUP="${packaging.fess.group}" L18: L19:# Source the default env file L20:FESS_ENV_FILE="${packaging.env.file}" L21:if [ -f "$FESS_ENV_FILE" ]; then L22: . "$FESS_ENV_FILE" L23:fi L24: L25:IS_UPGRADE=false L26: L27:case "$1" in L28: L29: # Debian #################################################### L30: configure) L31: L32: ...github.com/codelibs/fess/src/packaging/common/s...Thu Dec 10 01:24:02 UTC 2015 3.1K bytes -
Platform.kt
TLS extensions on `sslSocket` for `route`. L116: */ L117: open fun configureTlsExtensions( L118: sslSocket: SSLSocket, L119: hostname: String?, L120: protocols: List<@JvmSuppressWildcards Protocol>, L121: ) { L122: } L123: L124: /** Called after the TLS handshake to release resources allocated by [configureTlsExtensions]. */ L125: open fun afterHandshake(sslSocket: SSLSocket) { L126: } L127: L128: /** Returns the negotiated protocol, or null if no protocol was negotiated. */ L129:...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 9.8K bytes -
MockWebServerTest.kt
@Test L448: fun statementStartsAndStops() { L449: val called = AtomicBoolean() L450: val statement = L451: server.apply( L452: object : Statement() { L453: override fun evaluate() { L454: called.set(true) L455: server.url("/").toUrl().openConnection().connect() L456: } L457: }, L458: Description.EMPTY, L459: ) L460: statement.evaluate() L461: assertThat(called.get()).isTrue() L462: try { L463: server.url("/...github.com/square/okhttp/mockwebserver-deprecat...Mon Jan 08 01:13:22 UTC 2024 21.9K bytes -
outsideSqlMap.dfprop
sqlPackage: (NotRequired - Default all packages) L163: # The package of SQL file for outsideSql. L164: # This is basically for narrowing SQL-searching target, L165: # for example, when the project has SQL files for other framework. L166: # So basically you don't need this. L167: # L168: # You can use variable '$$PACKAGE_BASE$$' that means 'packageBase'. L169: # But you need to make SQL files at 'exbhv' under the set package L170: # if you use BehaviorQueryPath (Memb...github.com/codelibs/fess/dbflute_fess/dfprop/ou...Sat Jul 25 06:04:16 UTC 2015 8K bytes