Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,457 for classPath (0.17 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // If we are pretending that we don't have a sourcepath, the compiler will
                // look on the classpath for sources. Since we don't want to bring in any
                // sources implicitly from the classpath, we have to ignore source files
                // found on the classpath.
                if (location.equals(StandardLocation.CLASS_PATH)) {
                    kinds.remove(JavaFileObject.Kind.SOURCE);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

            if (additionalLoaders == null) {
                return loader(id, parent, classPath);
            }
            return new CachingClassLoader(multiLoader(id, parent, classPath, additionalLoaders));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

        writeCollection(classPath.asFiles) {
            writeFile(it)
        }
    }
    
    
    internal
    fun Encoder.writeTransformedClassPath(classPath: TransformedClassPath) {
        writeCollection(classPath.asFiles.zip(classPath.asTransformedFiles)) {
            writeFile(it.first)
            writeFile(it.second)
        }
    }
    
    
    internal
    fun Decoder.readClassPath(): ClassPath {
        val isTransformed = readBoolean()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScopeTest.kt

            }
    
            ScriptHandlerScope(buildscript).apply {
                dependencies {
                    classpath(notation)
                    classpath(notation) { exclude(module = "com.google.guava") }
                }
            }
    
            verify(dependencies).add(eq("classpath"), eq(notation))
            verify(dependencies).addProvider(eq("classpath"), eq(notation), any<Action<ExternalModuleDependency>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

    import org.gradle.internal.classloader.FilteringClassLoader
    import org.gradle.internal.classpath.transforms.ClassTransform
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForAgent
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForLegacy
    import org.gradle.internal.classpath.types.GradleCoreInstrumentationTypeRegistry
    import org.gradle.internal.configuration.inputs.InstrumentedInputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

            if (!mainClass.isPresent()) {
                if (classpath != null && classpath.getFiles().size() == 1) {
                    allArgs.add("-jar");
                    allArgs.add(classpath.getSingleFile().getAbsolutePath());
                } else {
                    throw new IllegalStateException("No main class specified and classpath is not an executable jar.");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/Testing.kt

        return o as T
    }
    
    
    inline fun withClassLoaderFor(vararg classPath: File, action: ClassLoader.() -> Unit) =
        classLoaderFor(*classPath).use(action)
    
    
    inline fun withClassLoaderFor(classPath: ClassPath, action: ClassLoader.() -> Unit) =
        classLoaderFor(classPath).use(action)
    
    
    fun classLoaderFor(classPath: ClassPath): URLClassLoader =
        classLoaderFor(*classPath.asFiles.toTypedArray())
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

        repositories {
            maven {
                url = '$mavenRepo.uri'
            }
        }
        configurations.classpath {
            resolutionStrategy.activateDependencyLocking()
        }
        dependencies {
            classpath 'org.foo:foo-plugin:[1.0,2.0)'
        }
    }
    """
            lockfileFixture.createBuildscriptLockfile('classpath', ['org.foo:foo-plugin:1.0'], unique)
    
            when:
            succeeds 'buildEnvironment'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

        }
    
        @Override
        public ClassLoader get(ClassLoaderId id, ClassPath classPath, @Nullable ClassLoader parent, @Nullable FilteringClassLoader.Spec filterSpec) {
            return get(id, classPath, parent, filterSpec, null);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath
    
    
    import spock.lang.Specification
    
    import static org.gradle.internal.classpath.TransformedClassPath.FileMarker.AGENT_INSTRUMENTATION_MARKER
    import static org.gradle.internal.classpath.TransformedClassPath.FileMarker.INSTRUMENTATION_CLASSPATH_MARKER
    import static org.gradle.internal.classpath.TransformedClassPath.FileMarker.LEGACY_INSTRUMENTATION_MARKER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top