Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for addRow (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

        rewriter.replaceOp(op, converted.getResults());
        return success();
      }
    };
    
    struct ConvertVariantAddNOp : public OpRewritePattern<TF::AddNOp> {
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::AddNOp op,
                                    PatternRewriter& rewriter) const override {
        if (!HasVariantInputOrOutput(op.getOperation())) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    // PreFilterExtensions returns prefilter extensions, pod add and remove.
    func (pl *PodTopologySpread) PreFilterExtensions() framework.PreFilterExtensions {
    	return pl
    }
    
    // AddPod from pre-computed data in cycleState.
    func (pl *PodTopologySpread) AddPod(ctx context.Context, cycleState *framework.CycleState, podToSchedule *v1.Pod, podInfoToAdd *framework.PodInfo, nodeInfo *framework.NodeInfo) *framework.Status {
    	s, err := getPreFilterState(cycleState)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod.go

    			pc.addPod(pod, ip, key)
    		} else {
    			return nil
    		}
    	case model.EventUpdate:
    		if !shouldPodBeInEndpoints(pod) || !IsPodReady(pod) {
    			// delete only if this pod was in the cache
    			if !pc.deleteIP(ip, key) {
    				return nil
    			}
    			ev = model.EventDelete
    		} else if shouldPodBeInEndpoints(pod) && IsPodReady(pod) {
    			pc.addPod(pod, ip, key)
    		} else {
    			return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod/pod_manager.go

    	// SetPods replaces the internal pods with the new pods.
    	// It is currently only used for testing.
    	SetPods(pods []*v1.Pod)
    	// AddPod adds the given pod to the manager.
    	AddPod(pod *v1.Pod)
    	// UpdatePod updates the given pod in the manager.
    	UpdatePod(pod *v1.Pod)
    	// RemovePod deletes the given pod from the manager.  For mirror pods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	node2 := &user.DefaultInfo{Name: "system:node:node2", Groups: []string{"system:nodes"}}
    	node3 := &user.DefaultInfo{Name: "system:node:node3", Groups: []string{"system:nodes"}}
    
    	g.AddPod(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "pod1-node1", Namespace: "ns1"},
    		Spec: corev1.PodSpec{
    			NodeName: "node1",
    			Volumes: []corev1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/fake_extender.go

    	var potentialVictims []*v1.Pod
    
    	removePod := func(rp *v1.Pod) error {
    		return nodeInfoCopy.RemovePod(logger, rp)
    	}
    	addPod := func(ap *v1.Pod) {
    		nodeInfoCopy.AddPod(ap)
    	}
    	// As the first step, remove all the lower priority pods from the node and
    	// check if the given pod can be scheduled.
    	podPriority := corev1helpers.PodPriority(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	MCRF:      "MOVFL",
    	XORI:      "XOR",
    	ORI:       "OR",
    	ANDICC:    "ANDCC",
    	ANDC:      "ANDN",
    	ANDCCC:    "ANDNCC",
    	ADDEO:     "ADDEV",
    	ADDEOCC:   "ADDEVCC",
    	ADDO:      "ADDV",
    	ADDOCC:    "ADDVCC",
    	ADDMEO:    "ADDMEV",
    	ADDMEOCC:  "ADDMEVCC",
    	ADDCO:     "ADDCV",
    	ADDCOCC:   "ADDCVCC",
    	ADDZEO:    "ADDZEV",
    	ADDZEOCC:  "ADDZEVCC",
    	SUBFME:    "SUBME",
    	SUBFMECC:  "SUBMECC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

      ASSERT_TRUE(module_op);
    
      auto test_func = module_op->lookupSymbol<func::FuncOp>("constant_add");
      ASSERT_THAT(test_func, NotNull());
    
      auto add_op = FindOperationOfType<mlir::stablehlo::AddOp>(test_func);
      EXPECT_FALSE(IsOpQuantizableStableHlo(add_op));
    }
    
    TEST_F(IsOpQuantizableStableHloTest, ValidXlaCallModuleOpQuantizable) {
      OwningOpRef<ModuleOp> module_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache.go

    // Assumes that lock is already acquired.
    func (cache *cacheImpl) addPod(logger klog.Logger, pod *v1.Pod, assumePod bool) error {
    	key, err := framework.GetPodKey(pod)
    	if err != nil {
    		return err
    	}
    	n, ok := cache.nodes[pod.Spec.NodeName]
    	if !ok {
    		n = newNodeInfoListItem(framework.NewNodeInfo())
    		cache.nodes[pod.Spec.NodeName] = n
    	}
    	n.info.AddPod(pod)
    	cache.moveNodeInfoToHead(logger, pod.Spec.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/desired_state_of_world.go

    type DesiredStateOfWorld interface {
    	// AddNode adds the given node to the list of nodes managed by the attach/
    	// detach controller.
    	// If the node already exists this is a no-op.
    	AddNode(nodeName k8stypes.NodeName)
    
    	// AddPod adds the given pod to the list of pods that reference the
    	// specified volume and is scheduled to the specified node.
    	// A unique volumeName is generated from the volumeSpec and returned on
    	// success.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top