Examples of Plan


Examples of com.hp.hpl.jena.sparql.engine.Plan

       
        Iterator<Binding> toReturn ;
       
        if ( query != null )
        {
            Plan plan = QueryExecutionFactory.createPlan(query, dsg, null, context) ;
            toReturn = plan.iterator();
        }
        else
        {
            toReturn = Iter.singleton(BindingRoot.create()) ;
        }
View Full Code Here

Examples of com.stripe.model.Plan

        this.emailSender = emailSender;
    }

    @Override
    public OrderConfirmation processOrder(Order order) throws StripeException {
        Plan plan = planCreator.createPlan(order);

        Customer customer = customerCreator.createCustormer(plan, order);

        String confirmationNumber = confirmationNumberGenerator.generateConfirmationNumber(customer);
View Full Code Here

Examples of edu.neu.ccs.task.Plan

        return;
      }
    }
   
    String exitUrl = null;
    Plan top = agent.getTop();
    Task topTask = top.getThisTask();
    Slot exitUrlSlot = topTask.getType().getSlotIfExists("exitUrl");
    if ((exitUrlSlot != null) &&
      exitUrlSlot.isOutput() &&
      "string".equals(exitUrlSlot.getType()) &&
      topTask.isDefinedSlot("exitUrl")) {
View Full Code Here

Examples of eu.planets_project.pp.plato.model.Plan

        if (check()) {
            List<Plan> projectList = em.createQuery("select p from Plan p where p.planProperties.id = "+this.projectID).getResultList();

            if (!projectList.isEmpty())
            {
                Plan p = projectList.get(0);
                log.info("Deleting project "+p.getPlanProperties().getId());
                em.remove(p);
                em.flush();
                FacesMessages.instance().add(FacesMessage.SEVERITY_INFO, "Plan " + this.projectID + " deleted!");
            }
            else
View Full Code Here

Examples of eu.scape_project.planning.model.Plan

  }
     
  @Test
  public void constructWorkflowSteps_standardPlanReturnsAllStandardSteps() throws PlanningException {
    Plan plan = mock(Plan.class);
   
    // number of steps
    List<AbstractView> result = wfStepFactory.constructWorkflowSteps(plan);
    assertEquals(14, result.size());
   
View Full Code Here

Examples of eu.stratosphere.api.common.Plan

      return jsonGen.getOptimizerPlanAsJSON(op);
    }
   
   
    private OptimizedPlan compileProgram(String jobName) {
      Plan p = createProgramPlan(jobName);
     
      PactCompiler pc = new PactCompiler(new DataStatistics());
      return pc.compile(p);
    }
View Full Code Here

Examples of io.crate.planner.Plan

        CreateTableNode createTableNode = CreateTableNode.createTableNode(
                "test",
                TEST_SETTINGS,
                TEST_MAPPING
        );
        Plan plan = new Plan();
        plan.add(createTableNode);

        Job job = executor.newJob(plan);
        List<ListenableFuture<TaskResult>> futures = executor.execute(job);
        ListenableFuture<List<TaskResult>> listenableFuture = Futures.allAsList(futures);
        TaskResult taskResult = listenableFuture.get().get(0);
View Full Code Here

Examples of javaff.data.Plan

      if (args.length > 3)
      {
        solutionFile = new File(args[3]);
      }
 
      Plan plan = plan(domainFile,problemFile);
 
      if (solutionFile != null && plan != null) writePlanToFile(plan, solutionFile);
     
    }
  }
View Full Code Here

Examples of lupos.optimizations.physical.joinorder.costbasedoptimizer.plan.Plan


  @Override
  public void rearrangeJoinOrder(final Root newRoot, final BasicIndexScan indexScan) {
    final Triple<List<LeafNodePlan>, HashMap<Variable, Literal>, HashMap<Variable, Literal>> initialInfo = this.getInitialPlansAndMinimaAndMaxima(indexScan.getTriplePattern(), indexScan);
    final Plan plan = this.getPlan(initialInfo.getFirst());
    final BasicOperator op = this.operatorGraphGenerator.generateOperatorGraph(plan, newRoot, indexScan, new LinkedList<Variable>(), initialInfo.getSecond(), initialInfo.getThird(), new HashMap<TriplePattern, Map<Variable, VarBucket>>());
    op.setSucceedingOperators(indexScan.getSucceedingOperators());
  }
View Full Code Here

Examples of lupos.optimizations.physical.joinorder.costbasedoptimizer.plan.Plan

      // start with an initial key factor of 1
      // no plans are joined so far
      // maximum number of initial plans to join is i + 1 for this row
      this.allCombinations(1, 0, 0, 0, 0, i + 1, initialPlans, bestPlans);
    }
    final Plan result = bestPlans[initialPlans.size() - 1].get(bestPlans[initialPlans.size() - 1].keySet().iterator().next());
    result.findMaxMergeJoins();
    return result;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.