Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 358 for contention (0.54 seconds)

  1. LICENSES/vendor/github.com/Azure/go-ansiterm/LICENSE

    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri May 08 04:49:00 GMT 2020
    - 1.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java

        }
    
        @Test
        public void test_constructor_withMessageAndCause() {
            // Test with both message and cause
            String message = "Data store connection failed";
            Exception cause = new RuntimeException("Connection timeout");
            DataStoreException exception = new DataStoreException(message, cause);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  3. build.gradle.kts

      alias(libs.plugins.shadow) apply false
      alias(libs.plugins.graalvm) apply false
      alias(libs.plugins.ksp) apply false
      alias(libs.plugins.burst) apply false
      id("okhttp.dokka-multimodule-conventions")
    }
    
    tasks.wrapper {
      distributionType = Wrapper.DistributionType.ALL
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 839 bytes
    - Click Count (1)
  4. okhttp/src/jvmMain/java9/module-info.java

      exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;
      exports okhttp3.internal.connection to mockwebserver3, okhttp3.mockwebserver, okhttp3.logging;
      exports okhttp3.internal.http to okhttp3.logging, okhttp3.brotli, mockwebserver3;
      exports okhttp3.internal.http2 to mockwebserver3, okhttp3.mockwebserver;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 992 bytes
    - Click Count (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

     * TeamCity.
     */
    val testFilesCleanup = project.extensions.create<TestFileCleanUpExtension>("testFilesCleanup").apply {
        reportOnly.convention(false)
    }
    
    // TODO:isolated:incremental the service won't track up-to-date projects (project configuration skipped) that still run tests
    if ("CI" in System.getenv() && project.name != "gradle-kotlin-dsl-accessors") {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.detekt.gradle.kts

    plugins {
        id("io.gitlab.arturbosch.detekt")
    }
    
    detekt {
        // enable all default rules
        buildUponDefaultConfig = true
    
        // customize some of the rules, until we can fix the offending cases
        config.convention(project.isolated.rootProject.projectDirectory.file("gradle/detekt.yml"))
    
        // also check the project build file
        source.from(project.buildFile)
    }
    
    pluginManager.withPlugin("gradlebuild.code-quality") {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 20 10:11:35 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ExchangeFinder.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.connection
    
    interface ExchangeFinder {
      val routePlanner: RoutePlanner
    
      fun find(): RealConnection
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 730 bytes
    - Click Count (0)
  8. container-tests/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("okhttp.base-conventions")
    }
    
    import okhttp3.buildsupport.platform
    import okhttp3.buildsupport.testJavaVersion
    
    val platform = project.platform
    val testJavaVersion = project.testJavaVersion
    
    tasks.withType<Test> {
      useJUnitPlatform()
      val isCi = providers.environmentVariable("CI")
      val containerTests = providers.gradleProperty("containerTests")
      onlyIf("By default not in CI") {
        !isCi.isPresent
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 1.3K bytes
    - Click Count (1)
  9. okhttp-osgi-tests/build.gradle.kts

    import okhttp3.buildsupport.testJavaVersion
    
    plugins {
      kotlin("jvm")
      id("okhttp.jvm-conventions")
      id("okhttp.testing-conventions")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(projects.okhttpBrotli)
      implementation(projects.okhttpCoroutines)
      implementation(projects.okhttpDnsoverhttps)
      implementation(projects.loggingInterceptor)
      implementation(projects.okhttpSse)
      implementation(projects.okhttpTls)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  10. android-test-app/build.gradle.kts

    @file:Suppress("UnstableApiUsage")
    
    import okhttp3.buildsupport.testJavaVersion
    
    
    plugins {
      id("okhttp.base-conventions")
      id("com.android.application")
    }
    
    android {
      compileSdk = 36
    
      namespace = "okhttp.android.testapp"
    
      // Release APKs can't be tested currently with AGP
      testBuildType = "debug"
    
      defaultConfig {
        minSdk = 21
        targetSdk = 36
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 06:56:34 GMT 2026
    - 1.2K bytes
    - Click Count (0)
Back to Top