Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 199 for addRow (0.1 sec)

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

    //===----------------------------------------------------------------------===//
    // Add op patterns.
    //===----------------------------------------------------------------------===//
    
    // We can lower AddOp to AddV2Op, except for string type. AddOp is defined for
    // TF_NumberNotQuantizedOrStrTensor tensor types. TF_NumberNotQuantizedTensor
    // is the same, except not containing TF_Str.
    
    def LowerAddOp : Pat<(TF_AddOp TF_NumberNotQuantizedTensor:$x,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		for _, r := range c.rss {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		for _, pod := range c.pods {
    			informers.Core().V1().Pods().Informer().GetIndexer().Add(pod)
    			manager.addPod(logger, pod)
    		}
    		actualPods, err := manager.getIndirectlyRelatedPods(logger, c.rs)
    		if err != nil {
    			t.Errorf("Unexpected error from getIndirectlyRelatedPods: %v", err)
    		}
    		var actualPodNames []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. samples/addons/README.md

    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    ## Getting started
    
    To quickly deploy all addons:
    
    ```shell script
    kubectl apply -f samples/addons
    ```
    
    Alternatively, you can deploy individual addons:
    
    ```shell script
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    // callbacks to make incremental updates to its supposedly pre-calculated
    // state.
    type PreFilterExtensions interface {
    	// AddPod is called by the framework while trying to evaluate the impact
    	// of adding podToAdd to the node while scheduling podToSchedule.
    	AddPod(ctx context.Context, state *CycleState, podToSchedule *v1.Pod, podInfoToAdd *PodInfo, nodeInfo *NodeInfo) *Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/a.out.go

    	C_VCON     // 64-bit constant
    	C_FCON     // floating-point constant
    	C_VCONADDR // 64-bit memory address
    
    	C_AACON  // ADDCON offset in auto constant $a(FP)
    	C_AACON2 // 24-bit offset in auto constant $a(FP)
    	C_LACON  // 32-bit offset in auto constant $a(FP)
    	C_AECON  // ADDCON offset in extern constant $e(SB)
    
    	// TODO(aram): only one branch class should be enough
    	C_SBRA // for TYPE_BRANCH
    	C_LBRA
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/mlir_wrapper/ops.cc

                 return opb
                     .create<mlir::func::ReturnOp>(
                         loc, mlir::ArrayRef<mlir::Value>(values))
                     .getOperation();
               });
    
      // mlir::TF::AddOp
      py::class_<mlir::TF::AddV2Op>(m, "Tf_AddV2Op")
          .def("create",
               [](mlir::OpBuilder& opb, mlir::Location loc, mlir::Value x,
                  mlir::Value y) -> mlir::Operation* {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 02:12:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    		if !status.IsSuccess() {
    			err := status.AsError()
    			logger.Error(err, "Plugin failed", "pod", klog.KObj(podToSchedule), "node", klog.KObj(nodeInfo.Node()), "operation", "addPod", "plugin", pl.Name())
    			return framework.AsStatus(fmt.Errorf("running AddPod on PreFilter plugin %q: %w", pl.Name(), err))
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/constant.go

    	EtcdUpgrade = "etcd-upgrade"
    
    	// Patches flag sets the folder where kubeadm component patches are stored
    	Patches = "patches"
    
    	// PrintManifest flag instructs kubeadm to print the addon manifests to STDOUT instead of installing them.
    	PrintManifest = "print-manifest"
    
    	// CleanupTmpDir flag indicates whether reset will cleanup the tmp dir
    	CleanupTmpDir = "cleanup-tmp-dir"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/scheduler/eventhandlers.go

    	if !ok {
    		logger.Error(nil, "Cannot convert to *v1.Pod", "obj", obj)
    		return
    	}
    
    	logger.V(3).Info("Add event for scheduled pod", "pod", klog.KObj(pod))
    	if err := sched.Cache.AddPod(logger, pod); err != nil {
    		logger.Error(err, "Scheduler cache AddPod failed", "pod", klog.KObj(pod))
    	}
    
    	sched.SchedulingQueue.AssignedPodAdded(logger, pod)
    }
    
    func (sched *Scheduler) updatePodInCache(oldObj, newObj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. tests/integration/pilot/revisions/uninstall_test.go

    // If purge is set to true, we expect all resources are removed.
    // Otherwise we expect only selected resources from control plane are removed, resources from base and the legacy addon installation would not be touched.
    func checkCPResourcesUninstalled(t test.Failer, cs cluster.Cluster, gvkResources []schema.GroupVersionKind, label string, purge bool) {
    	retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top