Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for jarFiles (0.13 sec)

  1. android/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)
  2. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

        }
    
        private createJarTaskOutputFile(String... tasksToSimulate) {
            for (def task : tasksToSimulate) {
                def jarFile = tasks.getByName(task).outputs.files.singleFile
                File libsDir = jarFile.parentFile
                libsDir.mkdirs()
                jarFile.createNewFile()
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tools/docker-builder/docker.go

    			} else if a.Save {
    				n := target
    				if variant != "" && variant != DefaultVariant { // For default variant, we do not add it.
    					n += "-" + variant
    				}
    
    				tarFiles[n+a.suffix] = ""
    				if variant == PrimaryVariant && hasDoubleDefault {
    					tarFiles[n+a.suffix] = target + a.suffix
    				}
    				t.Outputs = []string{"type=docker,dest=" + filepath.Join(testenv.LocalOut, "release", "docker", n+a.suffix+".tar")}
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top