Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 147 for Size (0.28 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    			end = 1
    		}
    
    		if ctxt.UseBASEntries {
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(begin))
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(end))
    		} else {
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(begin))
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(end))
    		}
    
    		i += 2 * ctxt.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/runtime/map.go

    		// dirtyalloc was previously generated by
    		// the above newarray(t.Bucket, int(nbuckets))
    		// but may not be empty.
    		buckets = dirtyalloc
    		size := t.Bucket.Size_ * nbuckets
    		if t.Bucket.Pointers() {
    			memclrHasPointers(buckets, size)
    		} else {
    			memclrNoHeapPointers(buckets, size)
    		}
    	}
    
    	if base != nbuckets {
    		// We preallocated some overflow buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    			}
    
    			if sizeS.versions > 0 {
    				res["versions"] = strconv.FormatUint(sizeS.versions, 10)
    			}
    			res["size"] = strconv.FormatInt(sizeS.totalSize, 10)
    			for name, tier := range sizeS.tiers {
    				res["tier-size-"+name] = strconv.FormatUint(tier.TotalSize, 10)
    				res["tier-versions-"+name] = strconv.Itoa(tier.NumVersions)
    			}
    			if sizeS.failedCount > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    func is64BitFloat(t *types.Type) bool {
    	return t.Size() == 8 && t.IsFloat()
    }
    
    func is32BitFloat(t *types.Type) bool {
    	return t.Size() == 4 && t.IsFloat()
    }
    
    func is64BitInt(t *types.Type) bool {
    	return t.Size() == 8 && t.IsInteger()
    }
    
    func is32BitInt(t *types.Type) bool {
    	return t.Size() == 4 && t.IsInteger()
    }
    
    func is16BitInt(t *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                // variant and here we are in the case the "including" component said that transitive
                // should be false so we need to arbitrarily carry that onto the dependency metadata
                assert dependencies.size() == 1;
                dependencies = Collections.singletonList(makeNonTransitive(dependencies.get(0)));
            }
            doesNotHaveDependencies = dependencies.isEmpty();
            return dependencies;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    				// a huge page boundary and rounding down start to the nearest huge
    				// page boundary is included in the full run we found. Include the entire
    				// huge page in the bound by rounding down to the huge page size.
    				size = size + (start - hugePageBelow)
    				start = hugePageBelow
    			}
    		}
    	}
    	return start, size
    }
    
    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/erasure-server-pool.go

    		p[i].Available = 0
    	}
    }
    
    // getAvailablePoolIdx will return an index that can hold size bytes.
    // -1 is returned if no serverPools have available space for the size given.
    func (z *erasureServerPools) getAvailablePoolIdx(ctx context.Context, bucket, object string, size int64) int {
    	serverPools := z.getServerPoolsAvailableSpace(ctx, bucket, object, size)
    	serverPools.FilterMaxUsed(100 - (100 * diskReserveFraction))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	tcpMSSEstimate = 1208
    
    	// recordSizeBoostThreshold is the number of bytes of application data
    	// sent after which the TLS record size will be increased to the
    	// maximum.
    	recordSizeBoostThreshold = 128 * 1024
    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    }
    
    func TestEqualExhaustive(t *testing.T) {
    	var size = 128
    	if testing.Short() {
    		size = 32
    	}
    	a := make([]byte, size)
    	b := make([]byte, size)
    	b_init := make([]byte, size)
    	// randomish but deterministic data
    	for i := 0; i < size; i++ {
    		a[i] = byte(17 * i)
    		b_init[i] = byte(23*i + 100)
    	}
    
    	for len := 0; len <= size; len++ {
    		for x := 0; x <= size-len; x++ {
    			for y := 0; y <= size-len; y++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

            this.fileLocator.updateType(type);
            this.attributes = attributes;
            this.createTime = createTime;
            this.lastModified = lastModified;
            this.lastAccess = lastAccess;
            this.size = size;
            this.isExists = true;
    
            if ( loadedAttributes ) {
                this.attrExpiration = this.sizeExpiration = System.currentTimeMillis() + getContext().getConfig().getAttributeCacheTimeout();
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top