Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ScriptCompilerFactory (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompilerFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.scripts;
    
    /**
     * A factory for script compilers.
     */
    public interface ScriptCompilerFactory {
        /**
         * Creates a compiler for the given source. The returned compiler can be used to compile the script into various
         * different forms.
         *
         * @param source The script source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/DefaultScriptPluginFactory.java

            ServiceRegistry scriptServices, ScriptCompilerFactory scriptCompilerFactory, Factory<LoggingManagerInternal> loggingFactoryManager,
            AutoAppliedPluginHandler autoAppliedPluginHandler, PluginRequestApplicator pluginRequestApplicator,
            CompileOperationFactory compileOperationFactory
        ) {
            this.scriptServices = scriptServices;
            this.scriptCompilerFactory = scriptCompilerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScriptCompilerFactory.java

    import org.gradle.groovy.scripts.internal.ScriptClassCompiler;
    import org.gradle.groovy.scripts.internal.ScriptRunnerFactory;
    
    public class DefaultScriptCompilerFactory implements ScriptCompilerFactory {
        private final ScriptRunnerFactory scriptRunnerFactory;
        private final ScriptClassCompiler scriptClassCompiler;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top