Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for reclen (0.28 sec)

  1. cmd/erasure-decode_test.go

    		offset := r.Int63n(length)
    		readLen := r.Int63n(length - offset)
    
    		expected := data[offset : offset+readLen]
    
    		// Get the checksums of the current part.
    		bitrotReaders := make([]io.ReaderAt, len(disks))
    		for index, disk := range disks {
    			if disk == OfflineDisk {
    				continue
    			}
    			tillOffset := erasure.ShardFileOffset(offset, readLen, length)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/builtin.go

    // rest to ssagen.
    //
    // For race detector, expand append(src, a [, b]* ) to
    //
    //	init {
    //	  s := src
    //	  const argc = len(args) - 1
    //	  newLen := s.len + argc
    //	  if uint(newLen) <= uint(s.cap) {
    //	    s = s[:newLen]
    //	  } else {
    //	    s = growslice(s.ptr, newLen, s.cap, argc, elemType)
    //	  }
    //	  s[s.len - argc] = a
    //	  s[s.len - argc + 1] = b
    //	  ...
    //	}
    //	s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	buf := "__" + strings.Replace(sect.Name[1:], ".", "_", -1)
    
    	msect := newMachoSect(mseg, buf, segname)
    
    	if sect.Rellen > 0 {
    		msect.reloc = uint32(sect.Reloff)
    		msect.nreloc = uint32(sect.Rellen / 8)
    	}
    
    	for 1<<msect.align < sect.Align {
    		msect.align++
    	}
    	msect.addr = sect.Vaddr
    	msect.size = sect.Length
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    		// Long-form length (section 8.1.3.5). Bits 1-7 encode the number of octets
    		// used to encode the length.
    		lenLen := lenByte & 0x7f
    		var len32 uint32
    
    		if lenLen == 0 || lenLen > 4 || len(*s) < int(2+lenLen) {
    			return false
    		}
    
    		lenBytes := String((*s)[2 : 2+lenLen])
    		if !lenBytes.readUnsigned(&len32, int(lenLen)) {
    			return false
    		}
    
    		// ITU-T X.690 section 10.1 (DER length forms) requires encoding the length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. src/runtime/mstats.go

    	// and only the garbage collector can run.
    	PauseTotalNs uint64
    
    	// PauseNs is a circular buffer of recent GC stop-the-world
    	// pause times in nanoseconds.
    	//
    	// The most recent pause is at PauseNs[(NumGC+255)%256]. In
    	// general, PauseNs[N%256] records the time paused in the most
    	// recent N%256th GC cycle. There may be multiple pauses per
    	// GC cycle; this is the sum of all pauses during a cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    			upperBoundCapacity: 5 * 2,
    			interval:           eventFreshDuration / 4,
    			expectCapacity:     5,
    			expectStartIndex:   0,
    		},
    		{
    			name:               "[capacity not equals 4*n] quarter of recent events outside eventFreshDuration cause cache shrinking",
    			eventCount:         5,
    			cacheCapacity:      5,
    			lowerBoundCapacity: 5 / 2,
    			upperBoundCapacity: 5 * 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/crypto/tls/cipher_suites.go

    // mechanism, as well as the cipher+MAC pair or the AEAD.
    type cipherSuite struct {
    	id uint16
    	// the lengths, in bytes, of the key material needed for each component.
    	keyLen int
    	macLen int
    	ivLen  int
    	ka     func(version uint16) keyAgreement
    	// flags is a bitmask of the suite* values, above.
    	flags  int
    	cipher func(key, iv []byte, isRead bool) any
    	mac    func(key []byte) hash.Hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type3Message.java

            setUser(new String(userBytes, charset));
            setWorkstation(new String(workstationBytes, charset));
    
            int micLen = pos + 24; // Version + MIC
            if ( end || lmResponseOffset < micLen || ntResponseOffset < micLen || domainOffset < micLen || userOffset < micLen
                    || workstationOffset < micLen ) {
                return;
            }
    
            pos += 8; // Version
    
            byte[] m = new byte[16];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

         *
         * Those are the mount points of file systems that do not support watching.
         */
        private FileHierarchySet unwatchableFiles = FileHierarchySet.empty();
    
        /**
         * Hierarchies in usage order, most recent first.
         */
        private final Deque<File> hierarchies = new ArrayDeque<>();
        private final List<File> watchableHierarchiesSinceLastBuildFinish = new ArrayList<>();
    
        public WatchableHierarchies(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    	"runtime"
    	"slices"
    	"time"
    )
    
    // GCStats collect information about recent garbage collections.
    type GCStats struct {
    	LastGC         time.Time       // time of last collection
    	NumGC          int64           // number of garbage collections
    	PauseTotal     time.Duration   // total pause for all collections
    	Pause          []time.Duration // pause history, most recent first
    	PauseEnd       []time.Time     // pause end times history, most recent first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top