Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 150 for Sizes (0.04 sec)

  1. src/cmd/internal/test2json/test2json.go

    	input      lineBuffer // input buffer
    	output     lineBuffer // output buffer
    	needMarker bool       // require ^V marker to introduce test framing line
    }
    
    // inBuffer and outBuffer are the input and output buffer sizes.
    // They're variables so that they can be reduced during testing.
    //
    // The input buffer needs to be able to hold any single test
    // directive line we want to recognize, like:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/size.go

    //		cap int
    //	}
    //
    // Strings in the runtime are represented by two components:
    //
    //	type string struct {
    //		ptr unsafe.Pointer
    //		len int
    //	}
    //
    // These variables are the offsets of fields and sizes of these structs.
    var (
    	SlicePtrOffset int64
    	SliceLenOffset int64
    	SliceCapOffset int64
    
    	SliceSize  int64
    	StringSize int64
    )
    
    var SkipSizeForTracing bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/reflect/abi.go

    	}
    }
    
    func newAbiDesc(t *funcType, rcvr *abi.Type) abiDesc {
    	// We need to add space for this argument to
    	// the frame so that it can spill args into it.
    	//
    	// The size of this space is just the sum of the sizes
    	// of each register-allocated type.
    	//
    	// TODO(mknyszek): Remove this when we no longer have
    	// caller reserved spill space.
    	spill := uintptr(0)
    
    	// Compute gc program & stack bitmap for stack arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/dilated_conv.h

    //
    // The Expand/Squeeze combination is used to adapt a 3D array (such as in
    // WaveNet) to the 4D arrays that Conv2D requires. Padding and BiasAdd are
    // thrown in just for the extra headache. Padding adapts non-conforming input
    // sizes, and can be discarded. The bias is necessary, so is kept.
    template <typename Conv2dOpTy>
    class ConvertTFDilatedConvOp : public OpRewritePattern<Conv2dOpTy> {
     private:
      using OpRewritePattern<Conv2dOpTy>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/cachez", "Info about the internal XDS caches", s.cachez)
    	s.addDebugHandler(mux, internalMux, "/debug/cachez?sizes=true", "Info about the size of the internal XDS caches", s.cachez)
    	s.addDebugHandler(mux, internalMux, "/debug/cachez?clear=true", "Clear the XDS caches", s.cachez)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_ppc64le.s

    #ifdef BYTESWAP_DATA
    	MOVD    $·byteswapcons(SB),R3
    	LVX	(R3),byteswap
    #endif
    
    	CMPU	R5,$256		// length of bytes
    	BLT	short
    
    	RLDICR	$0,R5,$56,R6 // chunk to process
    
    	// First step for larger sizes
    l1:	MOVD	$32768,R7
    	MOVD	R7,R9
    	CMP	R6,R7   // compare R6, R7 (MAX SIZE)
    	BGT	top	// less than MAX, just do remainder
    	MOVD	R6,R7
    top:
    	SUB	R7,R6,R6
    
    	// mainloop does 128 bytes at a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/go/types/generate_test.go

    	"pointer.go":       nil,
    	"predicates.go":    nil,
    	"scope.go":         func(f *ast.File) { fixTokenPos(f); renameIdents(f, "Squash->squash", "InsertLazy->_InsertLazy") },
    	"selection.go":     nil,
    	"sizes.go":         func(f *ast.File) { renameIdents(f, "IsSyncAtomicAlign64->_IsSyncAtomicAlign64") },
    	"slice.go":         nil,
    	"subst.go":         func(f *ast.File) { fixTokenPos(f); renameSelectors(f, "Trace->_Trace") },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. src/database/sql/convert_test.go

    	n := testing.AllocsPerRun(100, func() {
    		for _, tt := range tests {
    			rows.raw = rows.raw[:0]
    			test(tt.name, tt.in, tt.want)
    		}
    	})
    
    	// The numbers below are only valid for 64-bit interface word sizes,
    	// and gc. With 32-bit words there are more convT2E allocs, and
    	// with gccgo, only pointers currently go in interface data.
    	// So only care on amd64 gc for now.
    	measureAllocs := false
    	switch runtime.GOARCH {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. pkg/volume/emptydir/empty_dir.go

    				// PageSize for all volumes in a POD must be equal if medium is "Hugepages"
    				if pageSizeFound && pageSize.Cmp(currentPageSize) != 0 {
    					return "", fmt.Errorf("medium: %s can't be used if container requests multiple huge page sizes", medium)
    				}
    
    				pageSizeFound = true
    				pageSize = currentPageSize
    			} else { // medium is: Hugepages-<size>
    				if currentPageSize.Cmp(mediumPageSize) == 0 {
    					pageSizeFound = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais.go

    // (https://sites.google.com/site/yuta256/sais).
    //
    // And with other new optimizations.
    
    // Many of these functions are parameterized by the sizes of
    // the types they operate on. The generator gen.go makes
    // copies of these functions for use with other sizes.
    // Specifically:
    //
    // - A function with a name ending in _8_32 takes []byte and []int32 arguments
    //   and is duplicated into _32_32, _8_64, and _64_64 forms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top