Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,139 for sweep (0.06 sec)

  1. cmd/bucket-handlers.go

    		})
    	}
    
    	// Clean up transitioned objects from remote tier
    	for _, os := range oss {
    		if os == nil { // skip objects that weren't deleted due to invalid versionID etc.
    			continue
    		}
    		os.Sweep()
    	}
    }
    
    // PutBucketHandler - PUT Bucket
    // ----------
    // This implementation of the PUT operation creates a new bucket for authenticated request
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    			}
    			// Check that this span was swept (it may be cached or uncached).
    			if !useCheckmark && !(s.sweepgen == sg || s.sweepgen == sg+3) {
    				// sweepgen was updated (+2) during non-checkmark GC pass
    				print("sweep ", s.sweepgen, " ", sg, "\n")
    				throw("gc: unswept span")
    			}
    
    			// Lock the specials to prevent a special from being
    			// removed from the list while we're traversing it.
    			lock(&s.speciallock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    from the connection pool. nullable: true type: integer consecutiveLocalOrig: description: The number of consecutive locally originated failures before ejection occurs. nullable: true type: integer interval: description: Time interval between ejection sweep analysis. type: string maxEjectionPercent: description: Maximum % of hosts in the load balancing pool for the upstream service that can be ejected. format: int32 type: integer minHealthPercent: description: Outlier detection will be enabled as long...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    				// If named == typed we must have parameters that have no types,
    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = end // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/sleep.go

    Bryan C. Mills <******@****.***> 1637609440 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 20:34:30 UTC 2021
    - 378 bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    				// If named == typed we must have parameters that have no types,
    				// and they must be at the end of the parameter list, otherwise
    				// the types would have been filled in by the right-to-left sweep
    				// above and we wouldn't have an error. Since we are in a type
    				// parameter list, the missing types are constraints.
    				if named == typed {
    					errPos = p.pos // position error at closing ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    				tier = oi.TransitionedObject.Tier
    			}
    			if sizeS.tiers != nil {
    				if st, ok := sizeS.tiers[tier]; ok {
    					sizeS.tiers[tier] = st.add(oi.tierStats())
    				}
    			}
    		}
    
    		// apply tier sweep action on free versions
    		for _, freeVersion := range fivs.FreeVersions {
    			oi := freeVersion.ToObjectInfo(item.bucket, item.objectPath(), versioned)
    			done = globalScannerMetrics.time(scannerMetricTierObjSweep)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/trace/testdata/go122.test

    String id=16
    	data="preempted"
    String id=17
    	data="wait for debug call"
    String id=18
    	data="wait until GC ends"
    String id=19
    	data="sleep"
    String id=20
    	data="runtime.Gosched"
    String id=21
    	data="start trace"
    String id=22
    	data="GC sweep termination"
    String id=23
    	data="GC mark termination"
    String id=24
    	data="syscall.read"
    String id=25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    					// Make wake-up period small enough
    					// for the sampling to be correct.
    					sleep := forcegcperiod / 2
    					if next-now < sleep {
    						sleep = next - now
    					}
    					shouldRelax := sleep >= osRelaxMinNS
    					if shouldRelax {
    						osRelax(true)
    					}
    					syscallWake = notetsleep(&sched.sysmonnote, sleep)
    					if shouldRelax {
    						osRelax(false)
    					}
    					lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/model_test.go

    			notWant: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    			},
    		},
    		{
    			name:   "audit-http",
    			action: rbacpb.RBAC_LOG,
    			rule:   rule,
    			want: []string{
    				"td-1/ns/foo/sa/sleep-1",
    				"td-1/ns/foo/sa/sleep-2",
    				"td-1/ns/foo/sa/sleep-3",
    				"td-1/ns/foo/sa/sleep-4",
    				"td-1/ns/foo/sa/httpbin-1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top