Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,139 for sweep (0.05 sec)

  1. src/internal/trace/oldtrace.go

    	addBuiltin(sEmpty, "")
    	addBuiltin(sMarkAssistWait, "GC mark assist wait for work")
    	addBuiltin(sSTWUnknown, "")
    	addBuiltin(sSTWGCMarkTermination, "GC mark termination")
    	addBuiltin(sSTWGCSweepTermination, "GC sweep termination")
    	addBuiltin(sSTWWriteHeapDump, "write heap dump")
    	addBuiltin(sSTWGoroutineProfile, "goroutine profile")
    	addBuiltin(sSTWGoroutineProfileCleanup, "goroutine profile cleanup")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    	// naively count them, we would get a skew toward mallocs.
    	//
    	// Hence, we delay information to get consistent snapshots as
    	// of mark termination. Allocations count toward the next mark
    	// termination's snapshot, while sweep frees count toward the
    	// previous mark termination's snapshot:
    	//
    	//              MT          MT          MT          MT
    	//             .·|         .·|         .·|         .·|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	waitReasonGCSweepWait:           "GC sweep wait",
    	waitReasonGCScavengeWait:        "GC scavenge wait",
    	waitReasonChanReceive:           "chan receive",
    	waitReasonChanSend:              "chan send",
    	waitReasonFinalizerWait:         "finalizer wait",
    	waitReasonForceGCIdle:           "force gc (idle)",
    	waitReasonSemacquire:            "semacquire",
    	waitReasonSleep:                 "sleep",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/runtime/arena.go

    	// won't make a bad decision, (2) we're currently non-preemptible and in the runtime,
    	// so a GC is blocked from starting. We might race with sweeping, which could
    	// put it on the "wrong" sweep list, but really don't care because the chunk is
    	// treated as a large object span and there's no meaningful difference between scan
    	// and noscan large objects in the sweeper. The STW at the start of the GC acts as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		objInfo.ETag = origETag
    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3CopyObject)
    		// Remove the transitioned object whose object version is being overwritten.
    		os.Sweep()
    	}
    }
    
    // PutObjectHandler - PUT Object
    // ----------
    // This implementation of the PUT operation adds an object to a bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    	for mark/scan are broken down in to assist time (GC performed in
    	line with allocation), background GC time, and idle GC time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
                                  x-kubernetes-validations:
                                  - message: must be a valid duration greater than 1ms
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser.go

    	EvSTWDone           event.Type = 10 // GC mark termination done [timestamp]
    	EvGCSweepStart      event.Type = 11 // GC sweep start [timestamp, stack id]
    	EvGCSweepDone       event.Type = 12 // GC sweep done [timestamp, swept, reclaimed]
    	EvGoCreate          event.Type = 13 // goroutine creation [timestamp, new goroutine id, new stack id, stack id]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. manifests/charts/base/crds/crd-all.gen.yaml

                                  nullable: true
                                  type: integer
                                interval:
                                  description: Time interval between ejection sweep analysis.
                                  type: string
                                  x-kubernetes-validations:
                                  - message: must be a valid duration greater than 1ms
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  10. src/compress/flate/deflate_test.go

    	if err != nil {
    		t.Fatalf("ReadFile: %v", err)
    	}
    	d = d[:10000] // Keep this test short
    
    	zw, err := NewWriter(nil, DefaultCompression)
    	if err != nil {
    		t.Fatalf("NewWriter: %v", err)
    	}
    
    	// Sweep over the threshold at which an error is returned.
    	// The variable i makes it such that the ith call to failWriter.Write will
    	// return errIO. Since failWriter errors are not persistent, we must ensure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top