Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 284 for numbuf (0.18 sec)

  1. 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)
  2. 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)
  3. cmd/bucket-replication-utils_gen.go

    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BucketReplicationResyncStatus) Msgsize() (s int) {
    	s = 1 + 2 + msgp.IntSize + 4 + msgp.MapHeaderSize
    	if z.TargetsMap != nil {
    		for za0001, za0002 := range z.TargetsMap {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final String id = (String) source.remove(fessConfig.getIndexFieldId());
            source.remove(fessConfig.getIndexFieldVersion());
            final Number seqNo = (Number) source.remove(fessConfig.getIndexFieldSeqNo());
            final Number primaryTerm = (Number) source.remove(fessConfig.getIndexFieldPrimaryTerm());
            IndexResponse response;
            try {
                if (id == null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K 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. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// message.
    	Continue string `json:"continue,omitempty" protobuf:"bytes,3,opt,name=continue"`
    
    	// remainingItemCount is the number of subsequent items in the list which are not included in this
    	// list response. If the list request contained label or field selectors, then the number of
    	// remaining items is unknown and the field will be left unset and omitted during serialization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    (' ');
    L232:
    L233:        if (typeof options.showDropdowns === 'boolean')
    L234:            this.showDropdowns = options.showDropdowns;
    L235:
    L236:        if (typeof options.minYear === 'number')
    L237:            this.minYear = options.minYear;
    L238:
    L239:        if (typeof options.maxYear === 'number')
    L240:            this.maxYear = options.maxYear;
    L241:
    L242:        if (typeof options.showCustomRangeLabel === 'boolean')
    L243:            this.showCustomRangeLabel = options.showCustomRangeLabel;
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  9. src/syscall/syscall_windows.go

    	// Valid UTF-8 characters of 4 bytes require two uint16.
    	// Bytes with invalid UTF-8 encoding require maximum one uint16 per byte.
    	// So the number of UTF-8 code units (len(s)) is always greater or
    	// equal than the number of UTF-16 code units.
    	// Also account for the terminating NUL character.
    	buf := make([]uint16, 0, len(s)+1)
    	buf = encodeWTF16(s, buf)
    	return append(buf, 0), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. cmd/bucket-stats_gen.go

    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BucketReplicationStat) Msgsize() (s int) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top