Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for b_size (0.08 sec)

  1. src/syscall/ztypes_freebsd_amd64.go

    	Mtimespec     Timespec
    	Ctimespec     Timespec
    	Birthtimespec Timespec
    	Size          int64
    	Blocks        int64
    	Blksize       int32
    	Flags         uint32
    	Gen           uint64
    	Spare         [10]uint64
    }
    
    type Statfs_t struct {
    	Version     uint32
    	Type        uint32
    	Flags       uint64
    	Bsize       uint64
    	Iosize      uint64
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbCopyUtil.java

                    do {
                        long ooff = 0;
                        while ( ooff < size ) {
                            long wsize = size - ooff;
                            if ( wsize > byteLimit ) {
                                wsize = byteLimit;
                            }
    
                            int chunks = (int) ( wsize / maxChunkSize );
                            int lastChunkSize;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/filter.go

    		v, ok := tagsMap[k]
    		if !ok || v != cv {
    			mismatch = true
    			break
    		}
    	}
    	return !mismatch
    }
    
    // BySize returns true if sz satisfies one of ObjectSizeGreaterThan,
    // ObjectSizeLessThan predicates or a combination of them via And.
    func (f Filter) BySize(sz int64) bool {
    	if f.ObjectSizeGreaterThan > 0 &&
    		sz <= f.ObjectSizeGreaterThan {
    		return false
    	}
    	if f.ObjectSizeLessThan > 0 &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/strconv/ctoa_test.go

    		// ensure bitSize rounding is working
    		{1.2345678901234567 + 9.876543210987654i, 'f', -1, 128, "(1.2345678901234567+9.876543210987654i)"},
    		{1.2345678901234567 + 9.876543210987654i, 'f', -1, 64, "(1.2345679+9.876543i)"},
    
    		// other cases are handled by FormatFloat tests
    	}
    	for _, test := range tests {
    		out := FormatComplex(test.c, test.fmt, test.prec, test.bitSize)
    		if out != test.out {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 30 00:13:25 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. pkg/volume/metrics_du_unix_test.go

    import (
    	"golang.org/x/sys/unix"
    )
    
    func getExpectedBlockSize(path string) int64 {
    	statfs := &unix.Statfs_t{}
    	err := unix.Statfs(path, statfs)
    	if err != nil {
    		return 0
    	}
    
    	return int64(statfs.Bsize)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:18:31 UTC 2023
    - 840 bytes
    - Viewed (0)
  6. src/strconv/atoc.go

    // away from the largest floating point number of the given component's size,
    // ParseComplex returns err.Err = ErrRange and c = ±Inf for the respective component.
    func ParseComplex(s string, bitSize int) (complex128, error) {
    	size := 64
    	if bitSize == 64 {
    		size = 32 // complex64 uses float32 parts
    	}
    
    	orig := s
    
    	// Remove parentheses, if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

            }
            bitsChanged |= bits.set(combinedHash % bitSize);
          }
          return bitsChanged;
        }
    
        @Override
        public <T extends @Nullable Object> boolean mightContain(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
            LockFreeBitArray bits) {
          long bitSize = bits.bitSize();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Rdev    uint64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Btim    Timespec
    	Size    int64
    	Blocks  int64
    	Blksize int32
    	Flags   uint32
    	Gen     uint64
    	Spare   [10]uint64
    }
    
    type Statfs_t struct {
    	Version     uint32
    	Type        uint32
    	Flags       uint64
    	Bsize       uint64
    	Iosize      uint64
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      int64
    	Files       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_mips.go

    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    uint32
    	Pad2    [3]int32
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int32
    	Pad4    int32
    	Blocks  int64
    	Pad5    [14]int32
    }
    
    type Statfs_t struct {
    	Type      int32
    	Bsize     int32
    	Frsize    int32
    	Pad_cgo_0 [4]byte
    	Blocks    uint64
    	Bfree     uint64
    	Files     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_mipsle.go

    	Nlink   uint32
    	Uid     uint32
    	Gid     uint32
    	Rdev    uint32
    	Pad2    [3]int32
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int32
    	Pad4    int32
    	Blocks  int64
    	Pad5    [14]int32
    }
    
    type Statfs_t struct {
    	Type      int32
    	Bsize     int32
    	Frsize    int32
    	Pad_cgo_0 [4]byte
    	Blocks    uint64
    	Bfree     uint64
    	Files     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top