Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 346 for moduleId (0.04 sec)

  1. okhttp-testing-support/README.md

    1. OkHttp Testing Support
    2. ======================
    3.  
    4. This module offers utilities and support for testing OkHttp itself. It's not intended for use by
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jun 16 02:08:18 UTC 2019
    - 195 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

    1. // Not supported due to access checks on JDK 9+:
    2. // java.lang.reflect.InaccessibleObjectException: Unable to make member of class
    3. // sun.security.ssl.SSLSocketFactoryImpl accessible: module java.base does not export
    4. // sun.security.ssl to unnamed module @xxx
    5. throw UnsupportedOperationException(
    6. "clientBuilder.sslSocketFactory(SSLSocketFactory) not supported on JDK 8 (>= 252) or JDK 9+",
    7. )
    8. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (1)
  3. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

    1. List<MavenProject> allProjects =
    2. asList(createMavenProject("group", "module-a"), createMavenProject("group", "module-b"));
    3. MavenProject failedProject = allProjects.get(0);
    4.  
    5. String selector = cli.getResumeFromSelector(allProjects, failedProject);
    6.  
    7. assertThat(selector, is(":module-a"));
    8. }
    9.  
    10. @Test
    11. void resumeFromSelectorContainsGroupIdWhenArtifactIdIsNotUnique() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. docs/debugging/xattr/go.mod

    1. module github.com/minio/minio/docs/debugging/xattr
    2.  
    3. go 1.21
    4.  
    5. require (
    6. github.com/olekukonko/tablewriter v0.0.5
    7. github.com/pkg/xattr v0.4.9
    8. )
    9.  
    10. require (
    11. github.com/mattn/go-runewidth v0.0.15 // indirect
    12. github.com/rivo/uniseg v0.4.4 // indirect
    13. golang.org/x/sys v0.15.0 // indirect
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 289 bytes
    - Viewed (0)
  5. okhttp-java-net-cookiejar/build.gradle.kts

    1. plugins {
    2. kotlin("jvm")
    3. id("org.jetbrains.dokka")
    4. id("com.vanniktech.maven.publish.base")
    5. id("binary-compatibility-validator")
    6. }
    7.  
    8. project.applyOsgi(
    9. "Export-Package: okhttp3.java.net.cookiejar",
    10. "Automatic-Module-Name: okhttp3.java.net.cookiejar",
    11. "Bundle-SymbolicName: com.squareup.okhttp3.java.net.cookiejar"
    12. )
    13.  
    14. dependencies {
    15. api(projects.okhttp)
    16. compileOnly(libs.findbugs.jsr305)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Nov 20 16:20:29 UTC 2023
    - 621 bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.java-shared-runtime.gradle.kts

    1. import gradlebuild.commons.configureJavaToolChain
    2.  
    3. plugins {
    4. `java-library`
    5. groovy
    6.  
    7. id("gradlebuild.ci-reporting")
    8. id("gradlebuild.code-quality")
    9. id("gradlebuild.module-jar")
    10. id("gradlebuild.repositories")
    11. id("gradlebuild.reproducible-archives")
    12. id("gradlebuild.private-javadoc")
    13. }
    14.  
    15. description = "A plugin that sets up a Java code that is shared between build-logic and runtime"
    16.  
    17. java {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Sep 30 15:18:07 UTC 2024
    - 779 bytes
    - Viewed (0)
  7. .github/workflows/vulncheck.yml

    1. - master
    2.  
    3. permissions:
    4. contents: read # to fetch code (actions/checkout)
    5.  
    6. jobs:
    7. vulncheck:
    8. name: Analysis
    9. runs-on: ubuntu-latest
    10. steps:
    11. - name: Check out code into the Go module directory
    12. uses: actions/checkout@v4
    13. - name: Set up Go
    14. uses: actions/setup-go@v5
    15. with:
    16. go-version: 1.22.7
    17. - name: Get official govulncheck
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 22:53:34 UTC 2024
    - 658 bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/index.md

    1. ╭─ <font color="#8AE234"><b>Python module file</b></font> ─╮
    2. 🐍 main.py
    3. ╰──────────────────────╯
    4.  
    5. <font color="#3465A4">INFO </font> Importing module <font color="#4E9A06">main</font>
    6. <font color="#3465A4">INFO </font> Found importable FastAPI app
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 21:52:09 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. okhttp-logging-interceptor/build.gradle.kts

    1. plugins {
    2. kotlin("jvm")
    3. id("org.jetbrains.dokka")
    4. id("com.vanniktech.maven.publish.base")
    5. id("binary-compatibility-validator")
    6. }
    7.  
    8. project.applyOsgi(
    9. "Export-Package: okhttp3.logging",
    10. "Automatic-Module-Name: okhttp3.logging",
    11. "Bundle-SymbolicName: com.squareup.okhttp3.logging"
    12. )
    13.  
    14. dependencies {
    15. api(projects.okhttp)
    16. compileOnly(libs.findbugs.jsr305)
    17.  
    18. testCompileOnly(libs.findbugs.jsr305)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 842 bytes
    - Viewed (0)
  10. mockwebserver-junit4/README.md

    1. MockWebServer for JUnit 4
    2. =========================
    3.  
    4. This module integrates mockwebserver3.MockWebServer with JUnit 4.
    5.  
    6. To use, first add this library as a test dependency:
    7.  
    8. ```
    9. testImplementation("com.squareup.okhttp3:mockwebserver3-junit4:4.12.0")
    10. ```
    11.  
    12. Then in tests annotated `@org.junit.Test`, you may declare a field with the `@Rule` annotation:
    13.  
    14. ```
    15. @Rule public final MockWebServerRule serverRule = new MockWebServerRule();
    16. ```
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 707 bytes
    - Viewed (0)
Back to top