Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GroovyShell (0.14 sec)

  1. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

                    bindingMap.put("container", SingletonLaContainerFactory.getContainer());
                    final GroovyShell groovyShell = new GroovyShell(new Binding(bindingMap));
                    try {
                        return groovyShell.evaluate(template);
                    } catch (final JobProcessingException e) {
                        throw e;
                    } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

                    bindingMap.put("container", SingletonLaContainerFactory.getContainer());
                    final GroovyShell groovyShell = new GroovyShell(new Binding(bindingMap));
                    try {
                        return groovyShell.evaluate(template);
                    } catch (final JobProcessingException e) {
                        throw e;
                    } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                .build()
        }
    
        static groovy.lang.Script createScript(String code) {
            new GroovyShell().parse(code)
        }
    
        static Object call(String text, Object... params) {
            toClosure(text).call(*params)
        }
    
        static Closure toClosure(String text) {
            return new GroovyShell().evaluate("return " + text)
        }
    
        static Closure toClosure(TestClosure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

        Object evaluate(@GroovyBuildScriptLanguage String script) {
            CompilerConfiguration config = new CompilerConfiguration()
            config.classpath.add("${targetDir}/$lang/$sourceSet".toString())
            new GroovyShell(config).evaluate(script)
        }
    
        void execute(@GroovyBuildScriptLanguage String script) {
            evaluate(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top