Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,139 for sweep (0.08 sec)

  1. src/internal/trace/order.go

    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGCSweepBegin(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	// Handle sweep, which is bound to a P and doesn't require a G.
    	if err := validateCtx(curCtx, event.SchedReqs{Thread: event.MustHave, Proc: event.MustHave, Goroutine: event.MayHave}); err != nil {
    		return curCtx, false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. cmd/object-multipart-handlers.go

    	if !globalTierConfigMgr.Empty() {
    		// Schedule object for immediate transition if eligible.
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CompleteMultipartUpload)
    		os.Sweep()
    	}
    }
    
    // AbortMultipartUploadHandler - Abort multipart upload
    func (api objectAPIHandlers) AbortMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    		r.Name = "GC concurrent mark phase"
    		r.Scope = ResourceID{Kind: ResourceNone}
    	case go122.EvGCSweepBegin, go122.EvGCSweepActive, go122.EvGCSweepEnd:
    		r.Name = "GC incremental sweep"
    		r.Scope = ResourceID{Kind: ResourceProc}
    		if e.base.typ == go122.EvGCSweepActive {
    			r.Scope.id = int64(e.base.args[0])
    		} else {
    			r.Scope.id = int64(e.Proc())
    		}
    		r.Scope.id = int64(e.Proc())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
                                maxEjectionPercent:
                                  description: Maximum % of hosts in the load balancing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    // counters.
    //
    // gcMarkPhase indicates that we're in the mark phase and that certain counter
    // values should be used.
    func (s *cpuStats) accumulate(now int64, gcMarkPhase bool) {
    	// N.B. Mark termination and sweep termination pauses are
    	// accumulated in work.cpuStats at the end of their respective pauses.
    	var (
    		markAssistCpu     int64
    		markDedicatedCpu  int64
    		markFractionalCpu int64
    		markIdleCpu       int64
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. samples/sleep/sleep.yaml

    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: sleep
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. pkg/sleep/sleep.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package sleep
    
    import (
    	"context"
    	"time"
    )
    
    // UntilContext sleeps for the given duration, or until the context is complete.
    // Returns true if the sleep completes the full duration
    func UntilContext(ctx context.Context, d time.Duration) bool {
    	return Until(ctx.Done(), d)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 14:36:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. samples/security/spire/sleep-spire.yaml

    # Sleep service
    ##################################################################################################
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: sleep
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: sleep
      labels:
        app: sleep
        service: sleep
    spec:
      ports:
      - port: 80
        name: http
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. samples/sleep/sleep-vault.yaml

    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: sleep
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          serviceAccountName: vault-citadel-sa
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. src/time/sleep.go

    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"internal/godebug"
    	"unsafe"
    )
    
    // Sleep pauses the current goroutine for at least the duration d.
    // A negative or zero duration causes Sleep to return immediately.
    func Sleep(d Duration)
    
    var asynctimerchan = godebug.New("asynctimerchan")
    
    // syncTimer returns c as an unsafe.Pointer, for passing to newTimer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top