Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for scanStatus (3.48 sec)

  1. cmd/metacache_gen.go

    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *scanStatus) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = scanStatus(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z scanStatus) EncodeMsg(en *msgp.Writer) (err error) {
    	err = en.WriteUint8(uint8(z))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  2. cmd/metacache.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"path"
    	"strings"
    	"time"
    )
    
    type scanStatus uint8
    
    const (
    	scanStateNone scanStatus = iota
    	scanStateStarted
    	scanStateSuccess
    	scanStateError
    
    	// Time in which the initiator of a scan must have reported back.
    	metacacheMaxRunningAge = time.Minute
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // casgstatusAlwaysTrack is a debug flag that causes casgstatus to always track
    // various latencies on every transition instead of sampling them.
    var casgstatusAlwaysTrack = false
    
    // If asked to move to or from a Gscanstatus this will throw. Use the castogscanstatus
    // and casfrom_Gscanstatus instead.
    // casgstatus will loop if the g->atomicstatus is in a Gscan status until the routine that
    // put it in the Gscan state is finished.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top