Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for jarFile1 (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

                    }
                    writer.println(String.format("%s = file('%s')", destinationDir, jarFile.getParentFile().toURI()));
                    writer.println(String.format("%s = '%s'", archiveName, jarFile.getName()));
                    if (!manifestAttributes.isEmpty()) {
                        writer.println("def attrs = [:]");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

            }
        }
    
        private
        fun openJarFile(file: File) =
            openJars.computeIfAbsent(file, ::JarFile)
    
        override fun close() {
            openJars.values.forEach(JarFile::close)
        }
    }
    
    
    /**
     * See https://docs.oracle.com/javase/8/docs/technotes/tools/findingclasses.html#userclass
     */
    private
    val File.isClassPathArchive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            @Override
            public void accept(PersistentCache cache) {
                try {
                    File jarFile = jarFile(cache);
                    LOGGER.debug("Generating worker process classes to {}.", jarFile);
                    try (ZipOutputStream outputStream = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(jarFile)))) {
                        for (Class<?> classToMap : getClassesForWorkerJar()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/ClassPath.java

            throws IOException {
          JarFile jarFile;
          try {
            jarFile = new JarFile(file);
          } catch (IOException e) {
            // Not a jar file
            return;
          }
          try {
            for (File path : getClassPathFromManifest(file, jarFile.getManifest())) {
              // We only scan each file once independent of the classloader that file might be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/JavaAgentFixture.groovy

                        File agentJarFile = jarFile.singleFile
                        ["-javaagent:\${agentJarFile.absolutePath}".toString()]
                    }
                }
            """
        }
    
        private String configureForkOptions(String forkOptions) {
            """
                def javaAgent = objects.newInstance(JavaAgentCommandLineArgumentProvider)
                javaAgent.jarFile.from(configurations.javaagent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.wrapper.Wrapper.xml

                </tr>
                <tr>
                    <td>jarFile</td>
                    <td><literal><replaceable>${project.projectDir}</replaceable>/gradle/wrapper/gradle-wrapper.jar</literal></td>
                </tr>
                <tr>
                    <td>propertiesFile</td>
                    <td><literal>jarFile</literal>, replacing <literal>.jar</literal> with <literal>.properties</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/TraversalUtil.java

             * @param rootDir
             *            ルートディレクトリ
             */
            public JarFileTraverser(final JarFile jarFile, final String rootPackage, final String rootDir) {
                this.jarFile = jarFile;
                this.rootPackage = rootPackage;
                this.rootDir = rootDir;
            }
    
            /**
             * インスタンスを構築します。
             *
             * @param url
             *            Jarファイルを表すURL
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                                                <label for="jarFile" class="col-md-3 text-sm-right col-form-label"><la:message
                                                        key="labels.plugin_jar_file"/></label>
                                                <div class="col-md-9 text-sm-right col-form-label">
                                                    <input id="jarFile" type="file" name="jarFile" class="form-control-file"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/GroovyBasePluginIntegrationTest.groovy

        doLast {
            assert compileCustomGroovyClasspath.files.any { it.name == "$jarFile" }
            assert groovydocGroovyClasspath.files.any { it.name == "$jarFile" }
        }
    }
    """
    
            expect:
            succeeds("verify")
    
            where:
            dependency                                   | jarFile
            "org.codehaus.groovy:groovy-all:2.4.10"      | "groovy-all-2.4.10.jar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/cache/internal/GradleUserHomeCleanupFixture.groovy

    trait GradleUserHomeCleanupFixture implements VersionSpecificCacheCleanupFixture {
    
        private static final BiAction<GradleVersion, File> DEFAULT_JAR_WRITER = { version, jarFile ->
            jarFile << JarUtils.jarWithContents((DefaultGradleVersion.RESOURCE_NAME.substring(1)): "${DefaultGradleVersion.VERSION_NUMBER_PROPERTY}: ${version.version}")
        }
        static final String DEFAULT_JAR_PREFIX = 'gradle-base-services'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top