Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for size2 (0.04 sec)

  1. cmd/testdata/xl-meta-consist.zip

    ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ 141250§MetaUsr‚¤etagÙ"51fe09d68bacc8c5a68a-1¬content-type¸application/octet-streamÎöa‰ 10/xl.meta XL2 Æ b ¨Versions‘‚¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ÔLã°ê8EÒŸˆ”Ù Sé6¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistš ¨CSumAlgo ¨PartNums‘ ©PartETags‘ ©PartSizes‘Ò 'ªPartASizes‘Ò '¤SizeÒ 'Â¥MTimeÓ ¿W '’žÉ§MetaSys ¼X-Minio-Internal-actual-sizeÄ 141250§MetaUsr‚¬content-type¸application/octet-strea...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 19 18:48:00 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. releasenotes/notes/istiod-config-size-bytes.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 31772
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 208 bytes
    - Viewed (0)
  3. cmd/testdata/undeleteable-object.tgz

    ©PartETagsÀ©PartSizes‘Ñ ªPartASizes‘Ñ ¤SizeÑ ¥MTimeÓ É žùç°§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¤etagÙ 14a1119d5fe668d77000¬content-type¸application/octet-stream¡v Îhkáô ¤nullÄ7 1OÏ›qú†Ï *6 & ¦¯ùú±[Ô8i 3¬&²Ä$ ½×Û3° ”©Õ 2·zÍ7î÷ÿÿ#s« multisitea/data/disterasure/xl4/bucket/2/xl.meta XL2 Æ R Ä$•Ä Ó É ýG7xÄ â”{± Å &ƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ wÿhY ªFn€ Äw( ’¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ò P ªPartASizes‘Ò P ¤SizeÒ P ¥MTimeÓ É ýG7x§MetaSys€§...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

        explicit MemSpec(int op_index = 0, SizeT size = 0)
            : op_index(op_index), size(size) {}
      };
    
      static bool BySize(const MemSpec& a, const MemSpec& b) {
        return std::tie(a.size, a.op_index) < std::tie(b.size, b.op_index);
      }
    
      static bool ByOpIndex(const MemSpec& a, const MemSpec& b) {
        return std::tie(a.op_index, a.size) < std::tie(b.op_index, b.size);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows.go

    		// So basically we only support 386.
    		panic("compileCallback: float arguments not supported")
    	}
    
    	if t.Size_ == 0 {
    		// The Go ABI aligns for zero-sized types.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    		return
    	}
    
    	// In the C ABI, we're already on a word boundary.
    	// Also, sub-word-sized fastcall register arguments
    	// are stored to the least-significant bytes of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/archive/tar/testdata/neg-size.tar

    Joe Tsai <******@****.***> 1446603151 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 20:16:26 UTC 2015
    - 512 bytes
    - Viewed (0)
  7. src/go/types/gcsizes.go

    		offsets := s.Offsetsof(t.fields)
    		offs := offsets[n-1]
    		size := s.Sizeof(t.fields[n-1].typ)
    		if offs < 0 || size < 0 {
    			return -1 // type too large
    		}
    		// gc: The last field of a non-zero-sized struct is not allowed to
    		// have size 0.
    		if offs > 0 && size == 0 {
    			size = 1
    		}
    		// gc: Size includes alignment padding.
    		return align(offs+size, s.Alignof(t)) // may overflow to < 0 which is ok
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. hack/verify-file-sizes.sh

            case "$tree" in
                w/-text)
                    # Only binary files have a size limit.
                    size="$(wc -c < "$file")"
                    if [ "${size}" -gt "$maxsize" ] &&
                           ! kube::util::array_contains "$file" "${allowlist[@]}"; then
                        echo    "$file is too large ($size bytes)"
                    fi
                    ;;
                w/|w/lf|w/crlf|w/mixed|w/none)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 19:39:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    		size := dataSize - off
    		if size == 0 {
    			off -= goarch.PtrSize
    			size += goarch.PtrSize
    		}
    		interior := x + off
    		size -= alignDown(uintptr(cheaprand())%size, goarch.PtrSize)
    		if size == 0 {
    			size = goarch.PtrSize
    		}
    		// Round up the type to the size of the type.
    		size = (size + gctyp.Size_ - 1) / gctyp.Size_ * gctyp.Size_
    		if interior+size > x+maxIterBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. hack/e2e-internal/e2e-cluster-size.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 987 bytes
    - Viewed (0)
Back to top