Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 141 for jre (0.77 sec)

  1. okcurl/build.gradle.kts

        }
      }
    }
    
    dependencies {
      api(libs.kotlin.stdlib)
      api(projects.okhttp)
      api(projects.loggingInterceptor)
      api(libs.squareup.okio)
      implementation(libs.clikt)
      api(libs.guava.jre)
    
      testImplementation(projects.okhttpTestingSupport)
      testApi(libs.assertk)
      testImplementation(kotlin("test"))
    }
    
    animalsniffer {
      isIgnoreFailures = true
    }
    
    tasks.jar {
      manifest {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

     2040 ?        Sl     8:07 /usr/lib/jvm/java-1.8.0-openjdk-amd64/jre/bin/java -ea -cp ../launcher/lib/launcher.jar jetbrains.buildServer.agent.Launcher -ea -Xmx384m -Dteamcity_logs=../logs/ -Dlog4j.configuration=file:../conf/teamcity-agent-log4j.xml jetbrains.buildServer.agent.AgentMain -file ../conf/buildAgent.properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            final File home = location.getLocation();
            final File parentPath = home.getParentFile();
            final boolean isEmbeddedJre = home.getName().equalsIgnoreCase("jre");
            if (isEmbeddedJre && hasJavaExecutable(parentPath)) {
                return location.withLocation(parentPath);
            }
            return location;
        }
    
        private File findJavaHome(File potentialHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. mvnw

          export JAVA_HOME
        fi
      fi
    fi
    
    if [ -z "$JAVACMD" ] ; then
      if [ -n "$JAVA_HOME"  ] ; then
        if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
          # IBM's JDK on AIX uses strange locations for the executables
          JAVACMD="$JAVA_HOME/jre/sh/java"
        else
          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="$(\unset -f command 2>/dev/null; \command -v java)"
      fi
    fi
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/build.gradle.kts

            val variantVersion = context.details.id.version
            val version = variantVersion.substring(0, variantVersion.indexOf("-"))
            listOf("compile", "runtime").forEach { base ->
                mapOf(6 to "android", 8 to "jre").forEach { (targetJvmVersion, jarName) ->
                    context.details.addVariant("jdk$targetJvmVersion${base.capitalize()}", base) {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. gradle/libs.versions.toml

    gradlePlugin-shadow = "gradle.plugin.com.github.johnrengelman:shadow:8.0.0"
    gradlePlugin-spotless = "com.diffplug.spotless:spotless-plugin-gradle:6.25.0"
    guava-jre = "com.google.guava:guava:33.2.0-jre"
    hamcrestLibrary = "org.hamcrest:hamcrest-library:2.2"
    httpClient5 = "org.apache.httpcomponents.client5:httpclient5:5.3"
    jettyClient = "org.eclipse.jetty:jetty-client:9.4.54.v20240208"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-parent</artifactId>
      <version>HEAD-jre-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. guava-testlib/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>HEAD-jre-SNAPSHOT</version>
      </parent>
      <artifactId>guava-testlib</artifactId>
      <name>Guava Testing Library</name>
      <description>
        Guava testlib is a set of java classes used for more convenient
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-minify/kotlin/build.gradle.kts

    repositories {
        mavenCentral()
    }
    // tag::artifact-transform-attribute-setup[]
    
    dependencies {                                 // <4>
        implementation("com.google.guava:guava:27.1-jre")
        implementation(project(":producer"))
    }
    
    tasks.register<Copy>("resolveRuntimeClasspath") { // <5>
        from(configurations.runtimeClasspath)
        into(layout.buildDirectory.dir("runtimeClasspath"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. integration-tests/gradle/gradlew

    CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
    
    
    # Determine the Java command to use to start the JVM.
    if [ -n "$JAVA_HOME" ] ; then
        if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
            # IBM's JDK on AIX uses strange locations for the executables
            JAVACMD=$JAVA_HOME/jre/sh/java
        else
            JAVACMD=$JAVA_HOME/bin/java
        fi
        if [ ! -x "$JAVACMD" ] ; then
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top