Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,709 for size0 (0.4 sec)

  1. src/go/types/sizes.go

    //   - The size of strings and interfaces is 2*WordSize.
    //   - The size of slices is 3*WordSize.
    //   - The size of an array of n elements corresponds to the size of
    //     a struct of n consecutive fields of the array's element type.
    //   - The size of a struct is the offset of the last field plus that
    //     field's size. As with all element types, if the struct is used
    //     in an array its size must first be aligned to a multiple of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	}
    	didSearch := size0 != size1
    	if didSearch != tt.wantEOFSearch {
    		t.Errorf("%d. did EOF search = %v; want %v (size went from %d to %d)", i, didSearch, !didSearch, size0, size1)
    	}
    	if tt.wantNextReq && numReqs != 2 {
    		t.Errorf("%d. numReq = %d; want 2", i, numReqs)
    	}
    }
    
    // testHandlerBodyConsumer represents a function injected into a test handler to
    // vary work done on a request Body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/sizes.go

    //   - The size of strings and interfaces is 2*WordSize.
    //   - The size of slices is 3*WordSize.
    //   - The size of an array of n elements corresponds to the size of
    //     a struct of n consecutive fields of the array's element type.
    //   - The size of a struct is the offset of the last field plus that
    //     field's size. As with all element types, if the struct is used
    //     in an array its size must first be aligned to a multiple of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/size.go

    			maxAlign = 8
    		}
    	}
    
    	fields := t.Fields()
    	size := calcStructOffset(t, fields, 0)
    
    	// For non-zero-sized structs which end in a zero-sized field, we
    	// add an extra byte of padding to the type. This padding ensures
    	// that taking the address of a zero-sized field can't manufacture a
    	// pointer to the next object in the heap. See issue 9401.
    	if size > 0 && fields[len(fields)-1].Type.width == 0 {
    		size++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. test-site/activator-launch-1.3.2.jar

    public final synchronized class ArrayBuffer extends AbstractBuffer implements scala.Serializable, Builder, ResizableArray { private final int initialSize; private Object[] array; private int size0; public final Object[] array(); public final void array_$eq(Object[]); public final int size0(); public final void size0_$eq(int); public final int length(); public final Object apply(int); public final void update(int, Object); public final void foreach(scala.Function1); public final void copyToArray(Object,...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/types2/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: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top