Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 278 for Size (0.2 sec)

  1. src/debug/elf/file_test.go

    				sih.Addr == sjh.Addr && sih.Size == 0 {
    				continue
    			}
    			if sih.Addr >= sjh.Addr && sih.Addr < sjh.Addr+sjh.Size {
    				t.Errorf("ld produced ELF with section address %s within %s: 0x%x <= 0x%x..0x%x < 0x%x",
    					sih.Name, sjh.Name, sjh.Addr, sih.Addr, sih.Addr+sih.Size, sjh.Addr+sjh.Size)
    			}
    		}
    	}
    }
    
    func TestNobitsSection(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  2. 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 (2)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go

    func fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall6(libc_fgetxattr_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))
    	sz = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K 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. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go

    func fgetxattr(fd int, attr string, dest *byte, size int, position uint32, options int) (sz int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(attr)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall6(libc_fgetxattr_trampoline_addr, uintptr(fd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(dest)), uintptr(size), uintptr(position), uintptr(options))
    	sz = int(r0)
    	if e1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 66.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private List<String> getClasspathElements(final Predicate<String> scopeFilter, final boolean includeTestDir)
                throws DependencyResolutionRequiredException {
            final List<String> list = new ArrayList<>(getArtifacts().size() + 2);
            if (includeTestDir) {
                String d = getBuild().getTestOutputDirectory();
                if (d != null) {
                    list.add(d);
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVBZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() == 1 => x
    (MOVHZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() <= 2 => x
    (MOVWZreg x:(Arg <t>)) && !t.IsSigned() && t.Size() <= 4 => x
    
    // Remove sign extensions after argument load.
    (MOVBreg x:(Arg <t>)) && t.IsSigned() && t.Size() == 1 => x
    (MOVHreg x:(Arg <t>)) && t.IsSigned() && t.Size() <= 2 => x
    (MOVWreg x:(Arg <t>)) && t.IsSigned() && t.Size() <= 4 => x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. 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)
Back to top