Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 365 for _classpath (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

        }
    
        class ClassDetails {
            final String path
            final String className
            final String classpath
    
            ClassDetails(String path, String className, String classpath) {
                this.path = path
                this.className = className
                this.classpath = classpath
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: ClassPath,
                initializer: (File) -> Unit
            ): File
    
            fun startCompilerOperation(
                description: String
            ): AutoCloseable
    
            fun compilationClassPathOf(
                classLoaderScope: ClassLoaderScope
            ): ClassPath
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

        fun projectAccessorsClassPath(scriptTarget: ExtensionAware, classPath: ClassPath): AccessorsClassPath =
            scriptTarget.getOrCreateProperty("gradleKotlinDsl.accessorsClassPath") {
                buildAccessorsClassPathFor(scriptTarget, classPath)
                    ?: AccessorsClassPath.empty
            }
    
    
        private
        fun buildAccessorsClassPathFor(scriptTarget: Any, classPath: ClassPath): AccessorsClassPath? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

        }
    
        String wrapClassDirs(String classpath) {
            if (language == CompiledLanguage.GROOVY) {
                if (useJar) {
                    return "api.jar, ${classpath}, main"
                } else {
                    // api/build/classes/java/main and api/build/classes/groovy/main
                    // impl/build/classes/java/main
                    return "main, main, ${classpath}, main"
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            });
        }
    
        private static File findFile(String prefix, ClassPath classpath) {
            for (File f : classpath.getAsFiles()) {
                if (f.getName().startsWith(prefix)) {
                    return f;
                }
            }
            throw new IllegalStateException(String.format("Cannot find any files starting with %s in %s", prefix, classpath.getAsFiles()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathInstrumentationIntegrationTest.groovy

                    }
                    dependencies {
                        classpath "${first[0]}"
                        classpath "${second[0]}"
                    }
                }
    
                Thread.currentThread().getContextClassLoader().getURLs()
                    .eachWithIndex { artifact, idx -> println "classpath[\$idx]==\${Paths.get(artifact.toURI()).toFile().name}" }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

         * @since 3.4
         */
        public static final String RUNTIME_ONLY_CONFIGURATION_NAME = JvmConstants.RUNTIME_ONLY_CONFIGURATION_NAME;
    
        /**
         * The name of the runtime classpath configuration, used by a component to query its own runtime classpath.
         *
         * @since 3.4
         */
        public static final String RUNTIME_CLASSPATH_CONFIGURATION_NAME = JvmConstants.RUNTIME_CLASSPATH_CONFIGURATION_NAME;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    The whole transformation process normally happens on the first use of a build or when a plugin jar is added to the build script classpath.
    We transform the jar and cache transformed jars for future use.
    
    We transform plugins classpath, TestKit classpath and buildscript classes separately. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        /**
         * Returns the classpath used to compile this source.
         *
         * @return The classpath. Never returns null.
         */
        FileCollection getCompileClasspath();
    
        /**
         * Sets the classpath used to compile this source.
         *
         * @param classpath The classpath. Should not be null.
         */
        void setCompileClasspath(FileCollection classpath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

                    id("maven-publish")
                }
    
                group = 'group'
                version = '1.0'
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    api('org.test:non-transitive:1.0') { transitive = false }
                    api 'org.test:artifact-only:1.0@jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top