Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 65 for ClassPath (0.06 seconds)

  1. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

             * Only kill local Gradle processes (classpath in checkout directory).
             * Not clean up global Gradle processes (i.e. classpath in ~/.gradle/...).
             */
            KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
            /**
             * Run at the end of each build. Kill potentially leaked processes in the current build.
             * Only kill local Gradle processes (classpath in checkout directory).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 23 13:49:45 GMT 2025
    - 12K bytes
    - Click Count (0)
  2. build-logic/src/main/kotlin/Osgi.kt

            this,
          )
        val osgiApiArtifacts = osgiApi.artifacts
        val jvmMainClasses = tasks.named("jvmMainClasses").map { it.outputs.files }
        bundleExtension.apply {
          classpath(osgiApiArtifacts)
          classpath(jvmMainClasses)
          properties.empty()
          bnd(*bndProperties)
        }
        doLast("buildBundle", BndBuildAction(bundleExtension, this, mainSourceSet.allSource))
      }
    }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  3. .gitignore

    target/
    .settings/
    .classpath
    .project
    .idea
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Mon Nov 24 03:10:07 GMT 2025
    - 54 bytes
    - Click Count (0)
  4. build-logic/src/main/kotlin/JavaModules.kt

        options.compilerArgs.addAll(
          listOf(
            "--patch-module",
            "$moduleName=${compileKotlinTask.destinationDirectory.get().asFile}",
          ),
        )
    
        classpath = compileKotlinTask.libraries
        modularity.inferModulePath.set(true)
    
        val javaToolchains = project.extensions.getByType<JavaToolchainService>()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 22:47:58 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  5. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    // Note: @Test annotations are deliberate, as some subclasses specify @RunWith(JUnit4).
    @GwtIncompatible
    @J2ktIncompatible
    @J2ObjCIncompatible // com.google.common.reflect.ClassPath
    @NullMarked
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/build.gradle.kts

        compileOnly(buildLibs.kotlinCompilerEmbeddable)
    
        testImplementation(buildLibs.jsoup)
        testImplementation(testLibs.junit5JupiterEngine)
    }
    
    tasks.compileGroovy.configure {
        classpath += files(tasks.compileKotlin)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 927 bytes
    - Click Count (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts

                                includeEngines("archunit")
                            }
                            testClassesDirs += sharedArchTestClasses.filter { it.isDirectory }
                            classpath += sourceSets["main"].output.classesDirs
                            val excludePatterns = packageCyclesExtension.excludePatterns
                            doFirst {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 08:11:56 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

                logger.warn("Could not delete temp directory: path={}", ownTmpDir.getAbsolutePath());
            }
        }
    
        /**
         * Appends JAR files from the specified directory to the classpath buffer.
         *
         * @param cpSeparator the classpath separator to use
         * @param buf the StringBuilder to append to
         * @param libDir the directory containing JAR files
         * @param basePath the base path to prepend to JAR file names
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        /**
         * Gets the path to configuration files, falling back to classpath resources if not found.
         * First attempts to find the file in the configuration directory, then searches the classpath.
         *
         * @param names the path components to append to the configuration directory
         * @return the Path object pointing to the configuration file, either in conf directory or classpath
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  10. .gitignore

    bin/
    .classpath
    .project
    /target
    /.settings
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sun Aug 31 02:56:02 GMT 2025
    - 53 bytes
    - Click Count (0)
Back to Top