Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 146 for numbuf (0.13 sec)

  1. src/crypto/x509/x509.go

    	RevokedCertificates []pkix.RevokedCertificate
    
    	// Number is used to populate the X.509 v2 cRLNumber extension in the CRL,
    	// which should be a monotonically increasing sequence number for a given
    	// CRL scope and CRL issuer. It is also populated from the cRLNumber
    	// extension when parsing a CRL.
    	Number *big.Int
    
    	// ThisUpdate is used to populate the thisUpdate field in the CRL, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z ChecksumAlgo) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    					if len(testCase.resultL.Objects) != len(resultL.Objects) {
    						t.Logf("want: %v", objInfoNames(testCase.resultL.Objects))
    						t.Logf("got: %v", objInfoNames(resultL.Objects))
    						t.Errorf("Test %d: %s: Expected number of object in the result to be '%d', but found '%d' objects instead", i+1, instanceType, len(testCase.resultL.Objects), len(resultL.Objects))
    					}
    					for j := 0; j < len(testCase.resultL.Objects); j++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    		for off := uint(0); ; off += 7 {
    			x := uintptr(*p)
    			p = add1(p)
    			c |= (x & 0x7F) << off
    			if x&0x80 == 0 {
    				break
    			}
    		}
    		c *= n // now total number of bits to copy
    
    		// If the number of bits being repeated is small, load them
    		// into a register and use that register for the entire loop
    		// instead of repeatedly reading from memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	//
    	// Because of benign races during marking, this number may not
    	// be the exact number of marked bytes, but it should be very
    	// close.
    	//
    	// Put this field here because it needs 64-bit atomic access
    	// (and thus 8-byte alignment even on 32-bit architectures).
    	bytesMarked uint64
    
    	markrootNext uint32 // next markroot job
    	markrootJobs uint32 // number of markroot jobs
    
    	nproc  uint32
    	tstart int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	// scavChunkMaxFlags is the maximum number of flags we can have, given how
    	// a scavChunkData is packed into 8 bytes.
    	scavChunkMaxFlags  = 6
    	scavChunkFlagsMask = (1 << scavChunkMaxFlags) - 1
    
    	// logScavChunkInUseMax is the number of bits needed to represent the number
    	// of pages allocated in a single chunk. This is 1 more than log2 of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    		Results: make([]int, len(fi.Parts)),
    	}
    
    	erasure := fi.Erasure
    	for i, part := range fi.Parts {
    		checksumInfo := erasure.GetChecksumInfo(part.Number)
    		partPath := pathJoin(volumeDir, path, fi.DataDir, fmt.Sprintf("part.%d", part.Number))
    		err := s.bitrotVerify(ctx, partPath,
    			erasure.ShardFileSize(part.Size),
    			checksumInfo.Algorithm,
    			checksumInfo.Hash, erasure.ShardSize())
    
    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/runtime/traceback.go

    const usesLR = sys.MinFrameSize > 0
    
    const (
    	// tracebackInnerFrames is the number of innermost frames to print in a
    	// stack trace. The total maximum frames is tracebackInnerFrames +
    	// tracebackOuterFrames.
    	tracebackInnerFrames = 50
    
    	// tracebackOuterFrames is the number of outermost frames to print in a
    	// stack trace.
    	tracebackOuterFrames = 50
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	// Channel used to signal tests that are ready to be run in parallel.
    	startParallel chan bool
    
    	// running is the number of tests currently running in parallel.
    	// This does not include tests that are waiting for subtests to complete.
    	running int
    
    	// numWaiting is the number tests waiting to be run in parallel.
    	numWaiting int
    
    	// maxParallel is a copy of the parallel flag.
    	maxParallel int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/syscall/zerrors_solaris_amd64.go

    	33:  "argument out of domain",
    	34:  "result too large",
    	35:  "no message of desired type",
    	36:  "identifier removed",
    	37:  "channel number out of range",
    	38:  "level 2 not synchronized",
    	39:  "level 3 halted",
    	40:  "level 3 reset",
    	41:  "link number out of range",
    	42:  "protocol driver not attached",
    	43:  "no CSI structure available",
    	44:  "level 2 halted",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top