Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for Applies (0.12 sec)

  1. src/runtime/mgcscavenge.go

    //
    // The RSS goal is based on the current heap goal with a small overhead
    // to accommodate non-determinism in the allocator.
    //
    // The pacing is based on scavengePageRate, which applies to both regular and
    // huge pages. See that constant for more information.
    //
    // Must be called whenever GC pacing is updated.
    //
    // mheap_.lock must be held or the world must be stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    			proxier.natRules.Write(
    				args, "src,dst",
    				"-j", string(kubeMarkMasqChain))
    		}
    	}
    
    	// externalIPRules adds iptables rules applies to Service ExternalIPs
    	externalIPRules := func(args []string) {
    		// Allow traffic for external IPs that does not come from a bridge (i.e. not from a container)
    		// nor from a local process to be forwarded to the service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// Set to ^uint64(0) if gcPercent is disabled.
    	gcPercentHeapGoal atomic.Uint64
    
    	// sweepDistMinTrigger is the minimum trigger to ensure a minimum
    	// sweep distance.
    	//
    	// This bound is also special because it applies to both the trigger
    	// *and* the goal (all other trigger bounds must be based *on* the goal).
    	//
    	// It is computed ahead of time, at commit time. The theory is that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	parentID := TaskID(ev.args[1])
    	if parentID == BackgroundTask {
    		// Note: a value of 0 here actually means no parent, *not* the
    		// background task. Automatic background task attachment only
    		// applies to regions.
    		parentID = NoTask
    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    	nameID := stringID(ev.args[2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    You can find more information about this property <<upgrading_version_7.adoc#strict-kotlin-dsl-precompiled-scripts-accessors, below>>.
    
    ==== Init scripts are applied to `buildSrc` builds
    
    Init scripts specified using `--init-script` are now applied to `buildSrc` builds. In previous releases these were applied to included builds but not `buildSrc builds.
    
    This behavior is now consistent for `buildSrc` and included builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	// exceeds this threshold, then huge pages are enabled.
    	//
    	// These numbers are chosen with the assumption that huge pages are on the
    	// order of a few MiB in size.
    	//
    	// The kind of metadata this applies to has a very low overhead when compared
    	// to address space used, but their constant overheads for small heaps would
    	// be very high if they were to be backed by huge pages (e.g. a few MiB makes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,7,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// Load balancing policy for selecting endpoints.
    	// Note: this applies only to connecting directly to the workload; when waypoints are used, the waypoint's load_balancing
    	// configuration is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	routeHost := host.Name(rawRouteHost)
    	ourListener := host.Name(r.Hostname)
    	if len(ourListener) > 0 && !ourListener.IsWildCarded() {
    		// Short circuit: this logic only applies to wildcards
    		// Not required for correctness, just an optimization
    		return true
    	}
    	if len(ourListener) > 0 && !routeHost.Matches(ourListener) {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	return newCondition(batch.JobFailed, v1.ConditionTrue, condition.Reason, condition.Message, now)
    }
    
    // pastBackoffLimitOnFailure checks if container restartCounts sum exceeds BackoffLimit
    // this method applies only to pods with restartPolicy == OnFailure
    func pastBackoffLimitOnFailure(job *batch.Job, pods []*v1.Pod) bool {
    	if job.Spec.Template.Spec.RestartPolicy != v1.RestartPolicyOnFailure {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    // the termination state so that other components know no new containers will be started in this
    // pod. It then returns the status function, if any, that applies to this pod.
    func (p *podWorkers) acknowledgeTerminating(podUID types.UID) PodStatusFunc {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    	status, ok := p.podSyncStatuses[podUID]
    	if !ok {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top