Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 264 for reevaluate (0.35 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/EmptyStatement.groovy

     */
    package org.gradle.util
    
    import org.junit.runners.model.Statement
    
    class EmptyStatement extends Statement {
        public static final INSTANCE = new EmptyStatement()
    
        @Override
        void evaluate() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 820 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/score/QueryRescorer.java

     */
    package org.codelibs.fess.score;
    
    import java.util.Map;
    
    import org.opensearch.search.rescore.RescorerBuilder;
    
    public interface QueryRescorer {
        RescorerBuilder<?> evaluate(final Map<String, Object> params);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 835 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/script/ScriptEngine.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.script;
    
    import java.util.Map;
    
    public interface ScriptEngine {
        Object evaluate(final String template, final Map<String, Object> paramMap);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 793 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/provider/DeclarativeDslScriptPluginFactory.kt

            baseScope: ClassLoaderScope,
            topLevelScript: Boolean
        ): ScriptPlugin =
            DeclarativeDslPlugin(scriptSource) { target ->
                when (val result = declarativeKotlinScriptEvaluator.evaluate(target, scriptSource, targetScope)) {
                    is EvaluationResult.Evaluated -> Unit
                    is EvaluationResult.NotEvaluated ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PreconditionVerifier.groovy

            IgnoreStatement(List<Class<? extends TestPrecondition>> preconditions) {
                this.preconditions = preconditions
            }
    
            @Override
            void evaluate() {
                Assume.assumeTrue("Not all Requirements ${preconditions*.simpleName} are satisfied", false)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/impl/ScriptExecutor.java

            final Map<String, Object> params = new HashMap<>();
            params.put("executor", this);
    
            return ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(script, params);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compileTimeConstantProvider/AbstractCompileTimeConstantEvaluatorTest.kt

            } ?: testServices.assertions.fail { "Unsupported expression: $element" }
            val constantValue = executeOnPooledThreadInReadAction {
                analyseForTest(expression) {
                    expression.evaluate()
                }
            }
            val actual = buildString {
                appendLine("expression: ${expression.text}")
                appendLine("constant: ${constantValue?.renderAsKotlinConstant() ?: "NOT_EVALUATED"}")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/jvm/java-platform/src/test/java/org/gradle/api/plugins/JavaPlatformPluginTest.groovy

            project.dependencies.constraints.add(JavaPlatformPlugin.RUNTIME_CONFIGURATION_NAME, "org:api2:1.0")
    
            when:
            project.evaluate()
    
            then:
            ProjectConfigurationException ex = thrown()
    
            and:
            ex.cause.message.contains("Found dependencies in the 'api' configuration.")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

                this.base = base;
                this.description = description;
            }
    
            @Override
            public void evaluate() throws Throwable {
                // implicitly don't clean up if this throws
                base.evaluate();
    
                try {
                    cleanup();
                } catch (Exception e) {
                    if (suppressCleanupErrors()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    			found = true
    			break
    		}
    	}
    	if !found {
    		var reason string
    		if len(returnTypes) == 1 {
    			reason = fmt.Sprintf("must evaluate to %v", returnTypes[0].String())
    		} else {
    			reason = fmt.Sprintf("must evaluate to one of %v", returnTypes)
    		}
    
    		return resultError(reason, apiservercel.ErrorTypeInvalid)
    	}
    
    	if _, err = cel.AstToCheckedExpr(ast); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top