- Sort Score
- Num 10 results
- Language All
Results 1281 - 1290 of 2,311 for testLog (0.06 seconds)
-
okhttp-coroutines/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyOsgi( "Export-Package: okhttp3.coroutines", "Bundle-SymbolicName: com.squareup.okhttp3.coroutines", ) project.applyJavaModules("okhttp3.coroutines") dependencies { api(projects.okhttp) implementation(libs.kotlinx.coroutines.core)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 792 bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
import com.google.common.annotations.J2ktIncompatible; import com.google.common.collect.testing.Helpers; import com.google.common.primitives.UnsignedBytes.ArraysCompareUnsignedComparator; import com.google.common.primitives.UnsignedBytes.LexicographicalComparatorHolder.UnsafeComparator; import com.google.common.testing.NullPointerTester; import com.google.common.testing.SerializableTester; import java.util.Arrays; import java.util.Comparator;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 14K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
SMBUtil.writeInt2(0, buffer, contextPos + 4); // Reserved // The validation logic is implemented and verified through code inspection // Complex SMB parsing conditions make precise testing challenging, but the security checks exist try { response.readBytesWireFormat(buffer, 0); // If no exception, it's because other validation conditions weren't met
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 15.8K bytes - Click Count (0) -
mockwebserver-deprecated/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyJavaModules("okhttp3.mockwebserver") dependencies { "friendsApi"(projects.okhttp) api(projects.mockwebserver3) api(libs.junit) api(libs.square.okio) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.okhttpTls)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:47:20 GMT 2026 - 523 bytes - Click Count (0) -
mockwebserver/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyJavaModules("mockwebserver3") dependencies { "friendsApi"(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(projects.okhttpTls) testImplementation(projects.mockwebserver3Junit5) testImplementation(libs.junit)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 591 bytes - Click Count (0) -
mockwebserver-junit5/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyJavaModules("mockwebserver3.junit5") dependencies { "friendsApi"(projects.okhttp) api(projects.mockwebserver3) api(libs.junit.jupiter.api) compileOnly(libs.animalsniffer.annotations) testRuntimeOnly(libs.junit.jupiter.engine)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 546 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+branch-consistency.yml
--- - job: name: elastic+elasticsearch+%BRANCH%+branch-consistency display-name: "elastic / elasticsearch # %BRANCH% - branch consistency" description: Testing of the Elasticsearch master branch version consistency. triggers: - timed: "H 7 * * *" builders: - inject: properties-file: '.ci/java-versions.properties' properties-content: | JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA - shell: |Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 572 bytes - Click Count (0) -
samples/guide/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") id("com.google.devtools.ksp") } dependencies { "friendsImplementation"(projects.okhttp) implementation(projects.mockwebserver) implementation(projects.okhttpTestingSupport) implementation(projects.okhttpTls) implementation(libs.animalsniffer.annotations) implementation(libs.square.moshi)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 569 bytes - Click Count (0) -
okhttp-tls/build.gradle.kts
plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions") id("okhttp.testing-conventions") } project.applyOsgi( "Export-Package: okhttp3.tls", "Bundle-SymbolicName: com.squareup.okhttp3.tls", ) project.applyJavaModules("okhttp3.tls") dependencies { api(libs.square.okio) "friendsImplementation"(projects.okhttp)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 829 bytes - Click Count (0) -
src/bufio/export_test.go
// Copyright 2013 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package bufio // Exported for testing only. import ( "unicode/utf8" ) var IsSpace = isSpace const DefaultBufSize = defaultBufSize func (s *Scanner) MaxTokenSize(n int) { if n < utf8.UTFMax || n > 1e9 { panic("bad max token size") } if n < len(s.buf) {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Nov 02 17:17:44 GMT 2017 - 597 bytes - Click Count (0)