Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for addRow (0.28 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    	})
    	g.destinationEdgeIndex[n.ID()] = index
    }
    
    // AddPod should only be called once spec.NodeName is populated.
    // It sets up edges for the following relationships (which are immutable for a pod once bound to a node):
    //
    //	pod       -> node
    //	secret    -> pod
    //	configmap -> pod
    //	pvc       -> pod
    //	svcacct   -> pod
    func (g *Graph) AddPod(pod *corev1.Pod) {
    	start := time.Now()
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/link/internal/riscv64/asm.go

    		}
    
    		lui := int64(uint32(val))
    		addiw := int64(uint32(val >> 32))
    
    		lui = (lui &^ riscv.UTypeImmMask) | int64(uint32(luiImm))
    		addiw = (addiw &^ riscv.ITypeImmMask) | int64(uint32(addiwImm))
    
    		return addiw<<32 | lui, 0, true
    
    	case objabi.R_RISCV_BRANCH:
    		pc := ldr.SymValue(s) + int64(r.Off())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/asm/internal/asm/testdata/arm64error.s

    	ADDSW	$0xff, R6, RSP                                   // ERROR "illegal destination register"
    	ADDSW	$0xffff0, R6, RSP                                // ERROR "illegal destination register"
    	ADDSW	$0x1000100010001000, R6, RSP                     // ERROR "illegal destination register"
    	ADDSW	$0x10001000100011, R6, RSP                       // ERROR "illegal destination register"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    			return err
    		}
    		status := pl.fh.RunPreFilterExtensionRemovePod(ctx, state, pod, rpi, nodeInfo)
    		if !status.IsSuccess() {
    			return status.AsError()
    		}
    		return nil
    	}
    	addPod := func(api *framework.PodInfo) error {
    		nodeInfo.AddPodInfo(api)
    		status := pl.fh.RunPreFilterExtensionAddPod(ctx, state, pod, api, nodeInfo)
    		if !status.IsSuccess() {
    			return status.AsError()
    		}
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    	// context between initializeProxy and addCon, we would not get any pushes triggered for the new
    	// push context, leading the proxy to have a stale state until the next full push.
    	s.addCon(con.ID(), con)
    	// Register that initialization is complete. This triggers to calls that it is safe to access the
    	// proxy
    	defer con.MarkInitialized()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        - registry.k8s.io/ingress-glbc-amd64:v1.1.1
        sizeBytes: 67801919
      - names:
        - registry.k8s.io/kube-addon-manager@sha256:d53486c3a0b49ebee019932878dc44232735d5622a51dbbdcec7124199020d09
        - registry.k8s.io/kube-addon-manager:v8.7
        sizeBytes: 63322109
      - names:
        - nginx@sha256:4aacdcf186934dcb02f642579314075910f1855590fd3039d8fa4c9f96e48315
        - nginx:1.10-alpine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top