Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Executer (0.42 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def BreakUpIslandsPass : Pass<"tf-executor-break-up-islands", "mlir::func::FuncOp"> {
      let summary = "Transform from TF control dialect to TF executor dialect.";
      let constructor = "CreateBreakUpIslandsPass()";
      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SplitIntoIslandPerOpPass : Pass<"tf-executor-split-into-island-per-op", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    	if err != nil {
    		t.Fatalf("Failed to create HTTP request for NewMultipart Request: <ERROR> %v", err)
    	}
    	// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    	// Call the ServeHTTP to executes the registered handler.
    	apiRouter.ServeHTTP(rec, req)
    	// Assert the response code with the expected status.
    	if rec.Code != http.StatusOK {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // For more about gofmt, see 'go doc cmd/gofmt'.
    // For more about specifying packages, see 'go help packages'.
    //
    // The -n flag prints commands that would be executed.
    // The -x flag prints commands as they are executed.
    //
    // The -mod flag's value sets which module download mode
    // to use: readonly or vendor. See 'go help modules' for more.
    //
    // To run gofmt with specific options, run gofmt itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    						},
    					},
    					NodeAdd: { // not executed because NodeAdd is unrelated.
    						{
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnQueue,
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "If event with '*' Resource, queueing hint function for specified Resource is also executed",
    			podInfo: &framework.QueuedPodInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    	})
    	if err != nil {
    		return nil, err
    	}
    	core.SetAppInfo("minio-federated", ReleaseTag)
    	return core, nil
    }
    
    // Check if the destination bucket is on a remote site, this code only gets executed
    // when federation is enabled, ie when globalDNSConfig is non 'nil'.
    //
    // This function is similar to isRemoteCallRequired but specifically for COPY object API
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // the desired state of the kubelet should be reconciled with the actual state
    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    # Cluster specific test helpers
    
    # Execute prior to running tests to build a release if required for env.
    #
    # Assumed Vars:
    #   KUBE_ROOT
    function test-build-release() {
      # Make a release
      "${KUBE_ROOT}/build/release.sh"
    }
    
    # Execute prior to running tests to initialize required structure.
    #
    # Assumed vars:
    #   Variables from config.sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				},
    			},
    			wantStatusActive:    0,
    			wantStatusFailed:    1,
    			wantStatusSucceeded: 0,
    		},
    		"ignore pod failure; both rules are matching, the first is executed only": {
    			enableJobPodFailurePolicy: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:     validSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    // would be able to turn the node ready, and sync the ready state to the apiserver as soon as possible.
    // Function returns after the node status update after such event, or when the node is already ready.
    // Function is executed only during Kubelet start which improves latency to ready node by updating
    // kubelet state, runtime status and node statuses ASAP.
    func (kl *Kubelet) fastStatusUpdateOnce() {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return RefineTypeForPassThroughOperands(op, op->getOperands(),
                                                op->getResults());
      }
    
      // The shape inference function for `ReduceDatasetOp` should always be
      // executed regardless of whether the result type can be refined.
      if (auto reduce_dataset_op = dyn_cast<ReduceDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top