Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for stacksize (0.39 sec)

  1. src/regexp/regexp.go

    // return value of nil indicates no match.
    func (re *Regexp) FindReaderSubmatchIndex(r io.RuneReader) []int {
    	return re.pad(re.doExecute(r, nil, "", 0, re.prog.NumCap, nil))
    }
    
    const startSize = 10 // The size at which to start a slice in the 'All' routines.
    
    // FindAll is the 'All' version of [Regexp.Find]; it returns a slice of all successive
    // matches of the expression, as defined by the 'All' description in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      %elem = "tf._SomeOp"() : () -> tensor<2xi32>
      // CHECK-NEXT: %[[STACK_VAL:.*]] = "tf.ReadVariableOp"(%[[BUFFER]]) : (tensor<!tf_type.resource<tensor<10x2xi32>>>) -> tensor<10x2xi32>
      // CHECK-NEXT: %[[STACK_SIZE:.*]] = "tf.ReadVariableOp"(%[[SIZE]]) : (tensor<!tf_type.resource<tensor<1xi32>>>) -> tensor<1xi32>
      // CHECK-NEXT: %[[UPDATE_SHAPE:.*]] = "tf.Const"() <{value = dense<[1, 2]> : tensor<2xi32>}> : () -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool-decom.go

    	"github.com/minio/pkg/v3/workers"
    )
    
    // PoolDecommissionInfo currently decommissioning information
    type PoolDecommissionInfo struct {
    	StartTime   time.Time `json:"startTime" msg:"st"`
    	StartSize   int64     `json:"startSize" msg:"ss"`
    	TotalSize   int64     `json:"totalSize" msg:"ts"`
    	CurrentSize int64     `json:"currentSize" msg:"cs"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    	Failed   bool `json:"failed" msg:"fl"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		return
    	}
    	if control&SE_SELF_RELATIVE == 0 {
    		err = ERROR_INVALID_PARAMETER
    		return
    	}
    	var absoluteSDSize, daclSize, saclSize, ownerSize, groupSize uint32
    	err = makeAbsoluteSD(selfRelativeSD, nil, &absoluteSDSize,
    		nil, &daclSize, nil, &saclSize, nil, &ownerSize, nil, &groupSize)
    	switch err {
    	case ERROR_INSUFFICIENT_BUFFER:
    	case nil:
    		// makeAbsoluteSD is expected to fail, but it succeeds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/c/env.h

    typedef struct TF_StringStream TF_StringStream;
    typedef struct TF_Thread TF_Thread;
    
    typedef struct TF_ThreadOptions {
      // Thread stack size to use (in bytes), zero implies that the system default
      // will be used.
      size_t stack_size;
    
      // Guard area size to use near thread stacks to use (in bytes), zero implies
      // that the system default will be used.
      size_t guard_size;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/stackalloc.go

    				changed = true
    			}
    		}
    
    		if !changed {
    			break
    		}
    	}
    	if s.f.pass.debug > stackDebug {
    		for _, b := range s.f.Blocks {
    			fmt.Printf("stacklive %s %v\n", b, s.live[b.ID])
    		}
    	}
    }
    
    func (f *Func) getHome(vid ID) Location {
    	if int(vid) >= len(f.RegAlloc) {
    		return nil
    	}
    	return f.RegAlloc[vid]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    	s.placeSpills()
    
    	// Anything that didn't get a register gets a stack location here.
    	// (StoreReg, stack-based phis, inputs, ...)
    	stacklive := stackalloc(s.f, s.spillLive)
    
    	// Fix up all merge edges.
    	s.shuffle(stacklive)
    
    	// Erase any copies we never used.
    	// Also, an unused copy might be the only use of another copy,
    	// so continue erasing until we reach a fixed point.
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. src/regexp/find_test.go

    	{`.*`, "hello\xffworld", build(1, 0, 11)},
    	{`\x{fffd}`, "\xc2\x00", build(1, 0, 1)},
    	{"[\ufffd]", "\xff", build(1, 0, 1)},
    	{`[\x{fffd}]`, "\xc2\x00", build(1, 0, 1)},
    
    	// long set of matches (longer than startSize)
    	{
    		".",
    		"qwertyuiopasdfghjklzxcvbnm1234567890",
    		build(36, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10,
    			10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	types.CalcSize(fn.Type())
    	stksize := params.ArgWidth() // includes receiver, args, and results
    
    	res := n.Fun.Type().Results()
    	if k == callNormal || k == callTail {
    		for _, p := range params.OutParams() {
    			ACResults = append(ACResults, p.Type)
    		}
    	}
    
    	var call *ssa.Value
    	if k == callDeferStack {
    		if stksize != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        entry: Header,
        name: String,
        value: String,
        size: Int,
      ) {
        assertThat(entry.name.utf8()).isEqualTo(name)
        assertThat(entry.value.utf8()).isEqualTo(value)
        assertThat(entry.hpackSize).isEqualTo(size)
      }
    
      private fun assertBytes(vararg bytes: Int) {
        val expected = intArrayToByteArray(bytes)
        val actual = bytesOut.readByteString()
        assertThat(actual).isEqualTo(expected)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top