Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for addRow (0.24 sec)

  1. pkg/controller/job/job_controller_test.go

    	pod1 := newPod("pod1", job1)
    	pod2 := newPod("pod2", job2)
    	informer.Core().V1().Pods().Informer().GetIndexer().Add(pod1)
    	informer.Core().V1().Pods().Informer().GetIndexer().Add(pod2)
    
    	jm.addPod(logger, pod1)
    	verifyEmptyQueueAndAwaitForQueueLen(ctx, t, jm, 1)
    	key, done := jm.queue.Get()
    	if key == "" || done {
    		t.Fatalf("failed to enqueue controller for pod %v", pod1.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		}
    		return false, err
    	}
    
    	// Fetch the pull secrets for the pod
    	pullSecrets := kl.getPullSecretsForPod(pod)
    
    	// Ensure the pod is being probed
    	kl.probeManager.AddPod(pod)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// Handle pod resize here instead of doing it in HandlePodUpdates because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return 64 * count;
    
      return -1;
    }
    
    //===----------------------------------------------------------------------===//
    // AddNOp
    //===----------------------------------------------------------------------===//
    
    int64_t AddNOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if s := p.AddPod(ctx, cs, tt.preemptor, mustNewPodInfo(t, tt.addedPod), nodeInfo); !s.IsSuccess() {
    				t.Fatal(s.AsError())
    			}
    			state, err := getPreFilterState(cs)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if diff := cmp.Diff(tt.want, state, cmpOpts...); diff != "" {
    				t.Errorf("PodTopologySpread.AddPod() returned diff (-want,+got):\n%s", diff)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    TF_Buffer* TF_GetAllOpList() {
      std::vector<tensorflow::OpDef> op_defs;
      tensorflow::OpRegistry::Global()->GetRegisteredOps(&op_defs);
      tensorflow::OpList op_list;
      for (const auto& op : op_defs) {
        *(op_list.add_op()) = op;
      }
      TF_Buffer* ret = TF_NewBuffer();
      TF_CHECK_OK(MessageToBuffer(op_list, ret));
      return ret;
    }
    
    // --------------------------------------------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    		} else {
    			o1 = loadu32(int(p.To.Reg), d)
    			o2 = LOP_IRR(OP_ORI, uint32(p.To.Reg), uint32(p.To.Reg), uint32(int32(d)))
    		}
    
    	case 20: /* add $ucon,,r | addis $addcon,r,r */
    		v := c.regoff(&p.From)
    
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 = AOP_IRR(c.opirr(p.As), uint32(p.To.Reg), uint32(r), uint32(v))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    <pre class="ebnf">
    Expression = UnaryExpr | Expression binary_op Expression .
    UnaryExpr  = PrimaryExpr | unary_op UnaryExpr .
    
    binary_op  = "||" | "&amp;&amp;" | rel_op | add_op | mul_op .
    rel_op     = "==" | "!=" | "&lt;" | "&lt;=" | ">" | ">=" .
    add_op     = "+" | "-" | "|" | "^" .
    mul_op     = "*" | "/" | "%" | "&lt;&lt;" | "&gt;&gt;" | "&amp;" | "&amp;^" .
    
    unary_op   = "+" | "-" | "!" | "^" | "*" | "&amp;" | "&lt;-" .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		if num == 0 {
    			c.ctxt.Diag("invalid constant: %v", p)
    		}
    		o1 = os[0]
    		o2 = os[1]
    		o3 = os[2]
    		o4 = os[3]
    
    	case 13: /* addop $vcon, [R], R (64 bit literal); cmp $lcon,R -> addop $lcon,R, ZR */
    		if p.Reg == REGTMP {
    			c.ctxt.Diag("cannot use REGTMP as source: %v\n", p)
    		}
    		if p.To.Reg == REG_RSP && isADDSop(p.As) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	// result: (MOVDreg x)
    	for {
    		x := v_0
    		if x.Op != OpRISCV64MOVWload {
    			break
    		}
    		v.reset(OpRISCV64MOVDreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVWreg x:(ADDIW _))
    	// result: (MOVDreg x)
    	for {
    		x := v_0
    		if x.Op != OpRISCV64ADDIW {
    			break
    		}
    		v.reset(OpRISCV64MOVDreg)
    		v.AddArg(x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_AddOp : TFL_Op<"add", [
        TFL_RuntimePredOpTrait<"Operands should have valid shapes and element type needs to match",
          And<[CPred<"TFL::VerifyAddOpShapeConstraints(llvm::cast<AddOp>($_op))">,
               OperandsSameElementTypeConstraintBasePred]>>,
        ResultsBroadcastableShape,
        Pure,
        Commutative,
        QuantizableResult,
        DeclareOpInterfaceMethods<TFL_ArithmeticCount>]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top