Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setPhase (0.17 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            final MojoDescriptor mojoDescriptor = new MojoDescriptor();
            mojoDescriptor.setPhase(phaseName);
            final PluginDescriptor descriptor = new PluginDescriptor();
            Plugin plugin = new Plugin();
            plugin.setGroupId("org.apache.maven.test.MavenExecutionPlan");
            plugin.setArtifactId("stub-plugin-" + phaseName);
            descriptor.setPlugin(plugin);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

                    }
    
                    PluginExecution execution = new PluginExecution();
                    execution.setId(getExecutionId(plugin, gs.goal));
                    execution.setPhase(phase);
                    execution.setPriority(i - mojos.size());
                    execution.getGoals().add(gs.goal);
    
                    execution.setLocation("", location);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

                    VALIDATE.getPhase(),
                    INITIALIZE.getPhase(),
                    PROCESS_RESOURCES.getPhase(),
                    COMPILE.getPhase(),
                    TEST.getPhase(),
                    PROCESS_TEST_RESOURCES.getPhase(),
                    PACKAGE.getPhase(),
                    "BEER",
                    INSTALL.getPhase());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                    // to examine the phase it is associated to.
                    if (execution.getPhase() != null) {
                        Map<Integer, List<MojoExecution>> phaseBindings = mappings.get(execution.getPhase());
                        if (phaseBindings != null) {
                            for (String goal : execution.getGoals()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_Buffer* buf = TF_GetAllOpList();
      tensorflow::OpList op_list;
      EXPECT_TRUE(op_list.ParseFromArray(buf->data, buf->length));
      EXPECT_GT(op_list.op_size(), 0);
      TF_DeleteBuffer(buf);
    }
    
    TEST(CAPI, SetShape) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      TF_Operation* feed = Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
      TF_Output feed_out_0 = TF_Output{feed, 0};
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  6. tensorflow/c/c_api.cc

        return;
      }
      tensorflow::shape_inference::ShapeHandle new_shape =
          tensorflow::ShapeHandleFromDims(ic, num_dims, dims);
      status->status = graph->refiner.SetShape(node, output.index, new_shape);
    }
    
    int TF_GraphGetTensorNumDims(TF_Graph* graph, TF_Output output,
                                 TF_Status* status) {
      Node* node = &output.oper->node;
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top