Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for decSizes (0.65 sec)

  1. src/internal/coverage/cfile/apis.go

    	// counter array to write number-of-counters, pkgid, funcid. Later
    	// in the function there is also a store to increment a counter
    	// for the block containing the call to XYZ(). If the CPU is
    	// allowed to reorder stores and decides to issue the XYZ store
    	// before the prolog stores, this could be observable as an
    	// inconsistency similar to the one above. Hence the requirement
    	// for atomic counter mode: according to package atomic docs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/util.go

    // switch back to it. This is a hack but it is meant to cover a corner case where a user wants to migrate from a non-revisioned
    // old version and then later decides to switch back to the old revision again.
    func DeactivateIstioInjectionWebhook(ctx context.Context, client kubernetes.Interface) error {
    	whs, err := GetWebhooksWithRevision(ctx, client, DefaultRevisionName)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/validation.go

    	// to only ingress traffic within and into the cluster on one IP family only. this family is decided
    	// by the range set on --service-cluster-ip-range. If/when the user decides to use dual stack services
    	// the Secondary* must be of different IPFamily than --service-cluster-ip-range
    	if secondaryServiceClusterIPRangeUsed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    )
    
    type MatchCriteria interface {
    	namespace.NamespaceSelectorProvider
    	object.ObjectSelectorProvider
    
    	GetMatchResources() v1.MatchResources
    }
    
    // Matcher decides if a request matches against matchCriteria
    type Matcher struct {
    	namespaceMatcher *namespace.Matcher
    	objectMatcher    *object.Matcher
    }
    
    func (m *Matcher) GetNamespace(name string) (*corev1.Namespace, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    	// work parameters for the request.
    	// If the request is queued then `queueNoteFn` will be called twice,
    	// first with `true` and then with `false`; otherwise
    	// `queueNoteFn` will not be called at all.  If Handle decides
    	// that the request should be executed then `execute()` will be
    	// invoked once to execute the request; otherwise `execute()` will
    	// not be invoked.
    	// Handle() should never return while execute() is running, even if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    If a developer is continuously making changes in a single file, there is likely no need to rebuild all the other files in the project.
    
    However, what happens when the same developer decides to switch to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go

    	if rl := respLoggerFromRequest(req); rl != nil {
    		return rl.w
    	}
    	return w
    }
    
    // StacktraceWhen sets the stacktrace logging predicate, which decides when to log a stacktrace.
    // There's a default, so you don't need to call this unless you don't like the default.
    func (rl *respLogger) StacktraceWhen(pred StacktracePred) *respLogger {
    	rl.mutex.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 10:10:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top