Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for addRow (0.17 sec)

  1. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

            // Create the container
            animals = objectFactory.polymorphicDomainObjectContainer(Animal)
        }
    
        // Add a dog to the container
        void addDog(String name, String breed) {
            animals.create(Dog, name: name, breed: breed)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/status/status_manager_test.go

    	syncer := newTestManager(&fake.Clientset{})
    	pod := getTestPod()
    	pod.UID = "first"
    	syncer.podManager.(mutablePodManager).AddPod(pod)
    	differentPod := getTestPod()
    	differentPod.UID = "second"
    	syncer.podManager.(mutablePodManager).AddPod(differentPod)
    	syncer.kubeClient = fake.NewSimpleClientset(pod)
    	syncer.SetPodStatus(differentPod, getRandomPodStatus())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      auto add_op =
          rewriter.create<stablehlo::AddOp>(erf_op.getLoc(), erf_op, one_cst);
      auto lhs_mul_op = rewriter.create<stablehlo::MulOp>(
          half_cst.getLoc(), new_func.getArguments()[0], half_cst);
      auto output_mul_op = rewriter.create<stablehlo::MulOp>(lhs_mul_op.getLoc(),
                                                             lhs_mul_op, add_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          return failure();
        }
    
        if (fuse_bias_constant) {
          Operation* add_op = FindUserOfType<stablehlo::AddOp>(op);
          if (add_op == nullptr) {
            LLVM_DEBUG(llvm::dbgs() << "Failed to find AddOp for bias fusion.\n");
            return failure();
          }
          Operation* bias_const_op = GetBiasConstOp(add_op);
          if (bias_const_op == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        block->addArguments({type, type}, SmallVector<Location, 2>(2, loc));
        auto add_op = builder.create<AddOp>(loc, block->getArgument(0),
                                            block->getArgument(1));
        builder.create<ReturnOp>(loc, add_op.getResult());
      }
    };
    
    class ConvertTensorScatterSubOp
        : public ConvertTensorScatterOp<ConvertTensorScatterSubOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		wantErr        bool
    	}{
    		{
    			name:           "one coredns addon deployment",
    			deploymentSize: 1,
    			want:           2,
    			wantErr:        false,
    		},
    		{
    			name:           "no coredns addon deployment",
    			deploymentSize: 0,
    			want:           5,
    			wantErr:        false,
    		},
    		{
    			name:           "multiple coredns addon deployments",
    			deploymentSize: 3,
    			want:           5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant {
    namespace {
    
    using ::mlir::stablehlo::AddOp;
    using ::mlir::stablehlo::ConstantOp;
    using ::mlir::stablehlo::ConvolutionOp;
    using ::mlir::stablehlo::DotGeneralOp;
    using ::mlir::stablehlo::SubtractOp;
    using ::testing::ElementsAreArray;
    using ::testing::Eq;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set.go

    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, ssc.worker, time.Second)
    	}
    
    	<-ctx.Done()
    }
    
    // addPod adds the statefulset for the pod to the sync queue
    func (ssc *StatefulSetController) addPod(logger klog.Logger, obj interface{}) {
    	pod := obj.(*v1.Pod)
    
    	if pod.DeletionTimestamp != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    		),
    	}
    
    	logger := klog.FromContext(ctx)
    	jobInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			tc.addJob(logger, obj)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			tc.updateJob(logger, oldObj, newObj)
    		},
    	})
    
    	tc.jLister = jobInformer.Lister()
    	tc.jListerSynced = jobInformer.Informer().HasSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top