Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 558 for plan (0.17 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

          impls_iter->second.push_back(func);
        }
      }
      return func_impls;
    }
    
    // Given the final outputs, evaluate on the overall costs and pick the best
    // plan, if we cannot make a decision, nothing would change, just fallback
    // to the original plan.
    bool PickSubgraphsPass::MakeDecisions(ArrayRef<func::CallOp> output_subgraphs) {
      // BFS to make decisions.
      std::queue<const GraphView*> processing_queue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return op + " " + strings.Join(args, ",")
    	case BCA, BCL, BCLA, BCLRL, BCTAR, BCTARL:
    		return op + " " + strings.Join(args, ",")
    	}
    }
    
    // plan9Arg formats arg (which is the argIndex's arg in inst) according to Plan 9 rules.
    //
    // NOTE: because Plan9Syntax is the only caller of this func, and it receives a copy
    // of inst, it's ok to modify inst.Args here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/os/exec.go

    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    	// Process API that is not thread-safe, but it can't be changed now.
    	//
    	// On Windows, Release does _not_ modify p.Pid.
    	//
    	// On Windows, Wait calls Release after successfully waiting to
    	// proactively clean up resources.
    	//
    	// On Unix and Plan 9, Wait also proactively cleans up resources, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/net/error_test.go

    		nestedErr = err.Err
    		goto third
    	case *fs.PathError: // for Plan 9
    		nestedErr = err.Err
    		goto third
    	}
    	switch nestedErr {
    	case ErrClosed:
    		return nil
    	}
    	return fmt.Errorf("unexpected type on 2nd nested level: %T", nestedErr)
    
    third:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	switch nestedErr {
    	case fs.ErrClosed: // for Plan 9
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

    import org.gradle.api.Task;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.specs.Spec;
    import org.gradle.execution.EntryTaskSelector;
    import org.gradle.execution.plan.PlanExecutor;
    import org.gradle.execution.plan.QueryableExecutionPlan;
    import org.gradle.internal.build.BuildLifecycleController;
    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.build.BuildStateRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.project.ProjectInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/LifecycleExecutionPlanCalculatorStub.java

            int result = 0;
            for (ProjectSegment projectBuild : projectBuildList) {
                MavenExecutionPlan plan = calculateExecutionPlan(
                        projectBuild.getSession(),
                        projectBuild.getProject(),
                        projectBuild.getTaskSegment().getTasks());
                result += plan.size();
            }
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 20:57:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/config.go

    	c.ABI1 = abi.NewABIConfig(len(c.intParamRegs), len(c.floatParamRegs), ctxt.Arch.FixedFrameSize, 1)
    
    	// On Plan 9, floating point operations are not allowed in note handler.
    	if buildcfg.GOOS == "plan9" {
    		// Don't use FMA on Plan 9
    		c.UseFMA = false
    
    		// Don't use Duff's device and SSE on Plan 9 AMD64.
    		if arch == "amd64" {
    			c.noDuffDevice = true
    			c.useSSE = false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

       */
      override fun cancel() {
        if (canceled) return // Already canceled.
    
        canceled = true
        exchange?.cancel()
        for (plan in plansToCancel) {
          plan.cancel()
        }
    
        eventListener.canceled(this)
      }
    
      override fun isCanceled(): Boolean = canceled
    
      override fun execute(): Response {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				t.Errorf("failed ToPrinter, err: %+v", err)
    			}
    
    			plan := genUpgradePlan(rt.upgrades, rt.versionStates)
    			if err := printer.PrintObj(plan, rt.buf); err != nil {
    				t.Errorf("unexpected error when print object: %v", err)
    			}
    
    			actualBytes := rt.buf.Bytes()
    			if !bytes.Equal(actualBytes, rt.expectedBytes) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top