Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for scav (0.2 sec)

  1. src/runtime/mgcpacer.go

    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	// In both cases the algorithm is a linear scan over the two
    	// lists - T's methods and V's methods - simultaneously.
    	// Since method tables are stored in a unique sorted order
    	// (alphabetical, with no duplicate method names), the scan
    	// through V's methods must hit a match for each of T's
    	// methods along the way, or else V does not implement T.
    	// This lets us run the scan in overall linear time instead of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. tests/query_test.go

    	}
    }
    
    type DoubleInt64 struct {
    	data int64
    }
    
    func (t *DoubleInt64) Scan(val interface{}) error {
    	switch v := val.(type) {
    	case int64:
    		t.data = v * 2
    		return nil
    	default:
    		return fmt.Errorf("DoubleInt64 cant not scan with:%v", v)
    	}
    }
    
    // https://github.com/go-gorm/gorm/issues/5091
    func TestQueryScannerWithSingleColumn(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// contain defers (d3 in this case) for dead frames. The inversion here
    	// always indicates a dead frame, and the effect of the inversion on the
    	// scan is to hide those dead frames, so the scan is still okay:
    	// what's left on the panic stack are exactly (and only) the dead frames.
    	//
    	// We require callback != nil here because only when callback != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    			// - attempt a heal to successfully heal them for future calls.
    			if written == partLength {
    				var scan madmin.HealScanMode
    				switch {
    				case errors.Is(err, errFileNotFound):
    					scan = madmin.HealNormalScan
    				case errors.Is(err, errFileCorrupt):
    					scan = madmin.HealDeepScan
    				}
    				switch scan {
    				case madmin.HealNormalScan, madmin.HealDeepScan:
    					healOnce.Do(func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    //
    // Allocating a small object proceeds up a hierarchy of caches:
    //
    //	1. Round the size up to one of the small size classes
    //	   and look in the corresponding mspan in this P's mcache.
    //	   Scan the mspan's free bitmap to find a free slot.
    //	   If there is a free slot, allocate it.
    //	   This can all be done without acquiring a lock.
    //
    //	2. If the mspan has no free slots, obtain a new mspan
    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. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    We recommend the following steps for all users:
    
    . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so that you can see any deprecation warnings that apply to your build.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    		t.Errorf("response X-Modified header = %q; want %q", got, want)
    	}
    
    	io.WriteString(rwc, "Hello\n")
    	bs := bufio.NewScanner(rwc)
    	if !bs.Scan() {
    		t.Fatalf("Scan: %v", bs.Err())
    	}
    	got = bs.Text()
    	want = `backend got "Hello"`
    	if got != want {
    		t.Errorf("got %#q, want %#q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    If there are no warnings, the Deprecations tab will not appear.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so that you can see any deprecation warnings that apply to your build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    We recommend the following steps for all users:
    
    . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    This is so you can see any deprecation warnings that apply to your build.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top