Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for oldpod (1.09 sec)

  1. plugin/pkg/admission/nodetaint/admission_test.go

    			Status: api.NodeStatus{Conditions: []api.NodeCondition{notReadyCondition}}}
    		nodeKind = api.Kind("Node").WithVersion("v1")
    	)
    	tests := []struct {
    		name           string
    		node           api.Node
    		oldNode        api.Node
    		operation      admission.Operation
    		options        runtime.Object
    		expectedTaints []api.Taint
    	}{
    		{
    			name:           "notReady taint is added on creation",
    			node:           myNodeObj,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  2. pkg/proxy/metaproxier/meta_proxier.go

    }
    
    // OnNodeUpdate is called whenever modification of an existing
    // node object is observed.
    func (proxier *metaProxier) OnNodeUpdate(oldNode, node *v1.Node) {
    	proxier.ipv4Proxier.OnNodeUpdate(oldNode, node)
    	proxier.ipv6Proxier.OnNodeUpdate(oldNode, node)
    }
    
    // OnNodeDelete is called whenever deletion of an existing node
    // object is observed.
    func (proxier *metaProxier) OnNodeDelete(node *v1.Node) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/covdata/merge.go

    		m.Usage("select output directory with '-o' option")
    	}
    	m.mm.SetModeMergePolicy(cmerge.ModeMergeRelaxed)
    }
    
    func (m *mstate) BeginPod(p pods.Pod) {
    	m.mm.beginPod()
    }
    
    func (m *mstate) EndPod(p pods.Pod) {
    	m.mm.endPod(*pcombineflag)
    }
    
    func (m *mstate) BeginCounterDataFile(cdf string, cdr *decodecounter.CounterDataReader, dirIdx int) {
    	dbgtrace(2, "visit counter data file %s dirIdx %d", cdf, dirIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/math/big/floatmarsh.go

    		return errors.New("Float.GobDecode: buffer too small")
    	}
    
    	if buf[0] != floatGobVersion {
    		return fmt.Errorf("Float.GobDecode: encoding version %d not supported", buf[0])
    	}
    
    	oldPrec := z.prec
    	oldMode := z.mode
    
    	b := buf[1]
    	z.mode = RoundingMode((b >> 5) & 7)
    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/internal/cov/readcovdata.go

    //					VisitFunc(PF)
    //				}
    //			}
    //			EndPackage(PK)
    //		}
    //		EndPod(p)
    //	}
    //	Finish()
    
    type CovDataVisitor interface {
    	// Invoked at the start and end of a given pod (a pod here is a
    	// specific coverage meta-data files with the counter data files
    	// that correspond to it).
    	BeginPod(p pods.Pod)
    	EndPod(p pods.Pod)
    
    	// Invoked when the reader is starting to examine the meta-data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/covdata/subtractintersect.go

    	}
    	if *outdirflag == "" {
    		usage("select output directory with '-o' option")
    	}
    }
    
    func (s *sstate) BeginPod(p pods.Pod) {
    	s.mm.beginPod()
    }
    
    func (s *sstate) EndPod(p pods.Pod) {
    	const pcombine = false
    	s.mm.endPod(pcombine)
    }
    
    func (s *sstate) EndCounters() {
    	if s.imm != nil {
    		s.pruneCounters()
    	}
    }
    
    // pruneCounters performs a function-level partial intersection using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.h

    // Concat ) are inserted for shape inference purposes.
    // 4) All the DotOp are converted to DotGeneral during the optimization pass
    // (ConvertDotOp).
    Value ConvertDotGeneralOp(PatternRewriter& rewriter, Operation* old_op);
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 19:00:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/registry/batch/cronjob/strategy.go

    			fieldpath.MakePathOrDie("spec"),
    		),
    	}
    }
    
    func (cronJobStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newJob := obj.(*batch.CronJob)
    	oldJob := old.(*batch.CronJob)
    	newJob.Spec = oldJob.Spec
    }
    
    func (cronJobStatusStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return field.ErrorList{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 15:14:03 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    // returns the return type of the tfl.average_pool_2d emitted. Note that the
    // aten.avg_pool2d works with the NCHW layout while tfl.average_pool_2d assumes
    // NHWC.
    ShapedType GetNhwcReturnTypeFromNchw(Operation* old_op);
    
    }  // namespace odml
    
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    	}
    	return pvc, nil
    }
    
    // RequiresQuotaReplenish enables quota monitoring for PVCs.
    func RequiresQuotaReplenish(pvc, oldPVC *corev1.PersistentVolumeClaim) bool {
    	if utilfeature.DefaultFeatureGate.Enabled(k8sfeatures.RecoverVolumeExpansionFailure) {
    		if oldPVC.Status.AllocatedResources.Storage() != pvc.Status.AllocatedResources.Storage() {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top