Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for crack (0.06 sec)

  1. src/cmd/compile/internal/types/type.go

    func (t *Type) setFields(fields []*Field) {
    	// If we've calculated the width of t before,
    	// then some other type such as a function signature
    	// might now have the wrong type.
    	// Rather than try to track and invalidate those,
    	// enforce that SetFields cannot be called once
    	// t's width has been calculated.
    	if t.widthCalculated() {
    		base.Fatalf("SetFields of %v: width previously calculated", t)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    		}
    		if disabledSet.Has("*") {
    			logger.V(4).Info("Skipped MultiPoint expansion because all plugins are disabled for extension point", "extension", pluginType)
    			continue
    		}
    
    		// track plugins enabled via multipoint separately from those enabled by specific extensions,
    		// so that we can distinguish between double-registration and explicit overrides
    		multiPointEnabled := newOrderedSet()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // guarded by GODEBUG for now. Set GODEBUG=runtimecontentionstacks=1 to enable.
    //
    // TODO(rhysh): plumb through the delay duration, remove GODEBUG, update comment
    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    // Together, that demands several steps for recording contention. First, when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/parse.go

    	if p.size == nil {
    		// We haven't started tracking size yet.
    		// Do a relatively cheap check to see if we need to start.
    		// Maintain the product of all the repeats we've seen
    		// and don't track if the total number of regexp nodes
    		// we've seen times the repeat product is in budget.
    		if p.repeats == 0 {
    			p.repeats = 1
    		}
    		if re.Op == OpRepeat {
    			n := re.Max
    			if n == -1 {
    				n = re.Min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string operation = 2;
    
      // APIVersion defines the version of this resource that this field set
      // applies to. The format is "group/version" just like the top-level
      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string operation = 2;
    
      // APIVersion defines the version of this resource that this field set
      // applies to. The format is "group/version" just like the top-level
      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    	// A relatively small slice, but used many times as the return from processValue.
    	state.changedVars = newSparseSet(numVars)
    	state.changedSlots = newSparseSet(numSlots)
    
    	// A pending entry per user variable, with space to track each of its pieces.
    	numPieces := 0
    	for i := range state.varSlots {
    		numPieces += len(state.varSlots[i])
    	}
    	if cap(state.pendingSlotLocs) < numPieces {
    		state.pendingSlotLocs = make([]VarLoc, numPieces)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if opts.requireStructuralSchema {
    			if ss, err := structuralschema.NewStructural(schema); err != nil {
    				// These validation errors overlap with  OpenAPISchema validation errors so we keep track of them
    				// separately and only show them if OpenAPISchema validation does not report any errors.
    				structuralSchemaInitErrs = append(structuralSchemaInitErrs, field.Invalid(fldPath.Child("openAPIV3Schema"), "", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    			}
    			if hasHeader {
    				header = (**_type)(x)
    				x = add(x, mallocHeaderSize)
    				size -= mallocHeaderSize
    			}
    		}
    	} else {
    		shouldhelpgc = true
    		// For large allocations, keep track of zeroed state so that
    		// bulk zeroing can be happen later in a preemptible context.
    		span = c.allocLarge(size, noscan)
    		span.freeindex = 1
    		span.allocCount = 1
    		size = span.elemsize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		return
    	}
    
    	// its safe to set initialSync to false as it acts as a flag for startup actions
    	// and the mutex is held.
    	defer func() {
    		proxier.initialSync = false
    	}()
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    	defer func() {
    		metrics.SyncProxyRulesLatency.Observe(metrics.SinceInSeconds(start))
    		proxier.logger.V(4).Info("syncProxyRules complete", "elapsed", time.Since(start))
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top