Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 199 for addRow (0.14 sec)

  1. operator/pkg/component/component.go

    	return ret, nil
    }
    
    // createHelmRenderer creates a helm renderer for the component defined by c and returns a ptr to it.
    // If a helm subdir is not found in ComponentMap translations, it is assumed to be "addon/<component name>".
    func createHelmRenderer(c *CommonComponentFields) helm.TemplateRenderer {
    	iop := c.InstallSpec
    	cns := string(c.ComponentName)
    	helmSubdir := c.Translator.ComponentMap(cns).HelmSubdir
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/util/util.go

    			continue
    		}
    
    		uniquePodName := util.GetUniquePodName(pod)
    		if addVolumes {
    			// Add volume to desired state of world
    			_, err := desiredStateOfWorld.AddPod(
    				uniquePodName, pod, volumeSpec, nodeName)
    			if err != nil {
    				logger.V(10).Info("Failed to add volume for pod to desiredStateOfWorld", "pod", klog.KObj(pod), "volumeName", podVolume.Name, "err", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    * [stackdriver addon] Bump prometheus-to-sd to v0.5.0 to pick up security fixes. ([#75362](https://github.com/kubernetes/kubernetes/pull/75362), [@serathius](https://github.com/serathius))
        * [fluentd-gcp addon] Bump fluentd-gcp-scaler to v0.5.1 to pick up security fixes.
        * [fluentd-gcp addon] Bump event-exporter to v0.2.4 to pick up security fixes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/mmu.go

            if (plotData.quantiles) {
              for (var i = 1; i < plotData.quantiles.length; i++) {
                data.addColumn('number', niceQuantile(1 - plotData.quantiles[i]) + ' MU');
              }
            }
            data.addRows(curve);
            for (var i = 0; i < curve.length; i++) {
              data.setFormattedValue(i, 0, niceDuration(curve[i][0]));
            }
    
            var options = {
              chart: {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/obj0.go

    		}
    	}
    
    	if nosched {
    		// if we don't do instruction scheduling, simply add
    		// NOP after each branch instruction.
    		for p = c.cursym.Func().Text; p != nil; p = p.Link {
    			if p.Mark&BRANCH != 0 {
    				c.addnop(p)
    			}
    		}
    		return
    	}
    
    	// instruction scheduling
    	q = nil                   // p - 1
    	q1 = c.cursym.Func().Text // top of block
    	o := 0                    // count of instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    // definition of Elementwise, all i/o shapes and types must be same-rank
    // broadcastable and fully static. Consider moving this into attribute later.
    bool IsElementwise(Operation *op) {
      if (!(llvm::isa<TFL::AddOp, TFL::MulOp, TFL::DivOp, TFL::SubOp,
                      TFL::MaximumOp, TFL::MinimumOp>(op))) {
        return false;
      }
    
      auto opr1_type =
          llvm::dyn_cast_or_null<RankedTensorType>(op->getOperand(0).getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/configset.go

    				PreferredVersion: handler.GroupVersion.Version, // group so we can get away with these being the same
    			})
    		} else {
    			// This config was either not present (user did not install an addon) or the config was unsupported kubeadm
    			// generated one and is therefore skipped so we can automatically re-generate it (no action required on
    			// behalf of the user).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		clock:                 clock,
    		podBackoffStore:       newBackoffStore(),
    	}
    
    	if _, err := jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.addJob(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			jm.updateJob(logger, oldObj, newObj)
    		},
    		DeleteFunc: func(obj interface{}) {
    			jm.deleteJob(logger, obj)
    		},
    	}); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      static const std::set<std::string> *legacy_op_list =
          new std::set<std::string>({
              // clang-format off
              // go/keep-sorted start
              TF::AbsOp::getOperationName().str(),
              TF::AddOp::getOperationName().str(),
              TF::AddV2Op::getOperationName().str(),
              TF::ArgMaxOp::getOperationName().str(),
              TF::AvgPoolOp::getOperationName().str(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/cronjob_controllerv2.go

    		cronJobListerSynced: cronJobsInformer.Informer().HasSynced,
    		now:                 time.Now,
    	}
    
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    jm.addJob,
    		UpdateFunc: jm.updateJob,
    		DeleteFunc: jm.deleteJob,
    	})
    
    	cronJobsInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			jm.enqueueController(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top