Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 264 for reevaluate (0.16 sec)

  1. testing/internal-testing/src/test/groovy/org/gradle/testing/internal/util/ExpectedFailureRule.java

                @Override
                public void evaluate() throws Throwable {
                    ExpectedFailure expectedFailureAnnotation = method.getAnnotation(ExpectedFailure.class);
                    boolean expectedToFail = expectedFailureAnnotation != null;
                    Throwable failed = null;
                    try {
                        base.evaluate();
                    } catch (Throwable t) {
                        failed = t;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

            if (map == null || map.isEmpty() || matchExpression == null) {
                return false;
            }
    
            final Object value = ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(matchExpression, map);
            if (value instanceof Boolean) {
                return ((Boolean) value);
            }
    
            return false;
        }
    
        public float getValue(final Map<String, Object> map) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/TestLogHandler.kt

      }
    
      override fun apply(
        base: Statement,
        description: Description,
      ): Statement {
        return object : Statement() {
          override fun evaluate() {
            beforeEach(null)
            try {
              base.evaluate()
            } finally {
              afterEach(null)
            }
          }
        }
      }
    
      fun takeAll(): List<String> {
        val list = mutableListOf<String>()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildDependentsPerformanceTest.groovy

        )
        def "run #task"() {
            // TODO Enable once runnable on CI (google test & target platform)
            // 'largeNativeBuild'     | 'project432:buildDependentsExternalComponent111'
            // TODO Re-evaluate this scenario: memory consumption stress case, gradleOpts = ['-Xms4g', '-Xmx4g']
            // The generated dependency graph is rather complex and deep, unrealistic?
            // 'nativeDependentsDeep' | 'libA0:buildDependentsLibA0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/util/internal/RedirectStdOutAndErr.java

        @Override
        public Statement apply(final Statement base, FrameworkMethod method, Object target) {
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    originalStdOut = System.out;
                    originalStdErr = System.err;
                    stdOutRouter.setOut(originalStdOut);
                    stdErrRouter.setOut(originalStdErr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            }
            changed
        }
    
        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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

        @Override
        public Statement apply(final Statement base, Description description) {
            sampleName = getSampleName(description);
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    if (sampleName != null) {
                        IntegrationTestBuildContext context = IntegrationTestBuildContext.INSTANCE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      // evaluated with some unknown operands.
      if (std::any_of(operands.begin(), operands.end(),
                      [](Attribute operand) { return !operand; })) {
        VLOG(1) << "Can't evaluate since not all operands are constant.";
        return failure();
      }
    
      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

            final Statement statement = resources.apply(base, method, target);
            return new Statement() {
                @Override
                public void evaluate() throws Throwable {
                    String className = method.getMethod().getDeclaringClass().getSimpleName();
                    maybeCopy(String.format("%s/shared", className));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory");
            new AbstractScriptEngine() {
    
                @Override
                public Object evaluate(String template, Map<String, Object> paramMap) {
                    final Map<String, Object> bindingMap = new HashMap<>(paramMap);
                    bindingMap.put("container", SingletonLaContainerFactory.getContainer());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top