Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for Size (0.09 sec)

  1. cmd/admin-handlers.go

    type dummyFileInfo struct {
    	name    string
    	size    int64
    	mode    os.FileMode
    	modTime time.Time
    	isDir   bool
    	sys     interface{}
    }
    
    func (f dummyFileInfo) Name() string       { return f.name }
    func (f dummyFileInfo) Size() int64        { return f.size }
    func (f dummyFileInfo) Mode() os.FileMode  { return f.mode }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-gc-stress.test

    -- expect --
    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=3 m=18446744073709551615 time=28114950954550 size=5
    Frequency freq=15625000
    EventBatch gen=3 m=169438 time=28114950899454 size=615
    ProcStatus dt=2 p=47 pstatus=1
    GoStatus dt=1 g=111 m=169438 gstatus=2
    GCMarkAssistActive dt=1 g=111
    GCMarkAssistEnd dt=1
    HeapAlloc dt=38 heapalloc_value=191159744
    HeapAlloc dt=134 heapalloc_value=191192512
    GCMarkAssistBegin dt=60 stack=3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    	if err != nil {
    		t.Fatalf("Test: %s complete multipart upload failed: <ERROR> %v", instanceType, err)
    	}
    	if result.Size != int64(len(bytesData[0].byteData)) {
    		t.Fatalf("Test: %s expected size not written: expected %d, got %d", instanceType, len(bytesData[0].byteData), result.Size)
    	}
    
    	var buf bytes.Buffer
    	r, err := obj.GetObjectNInfo(context.Background(), bucketName, testObject, nil, nil, ObjectOptions{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		t.Errorf("StructOf(fields).String()=%q, want %q", got, want)
    	}
    
    	// check the size, alignment and field offsets
    	stt := TypeOf(struct {
    		String string
    		X      byte
    		Y      uint64
    		Z      [3]uint16
    	}{})
    	if st.Size() != stt.Size() {
    		t.Errorf("constructed struct size = %v, want %v", st.Size(), stt.Size())
    	}
    	if st.Align() != stt.Align() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/net/http/server.go

    }
    func putCopyBuf(b []byte) {
    	if len(b) != copyBufPoolSize {
    		panic("trying to put back buffer of the wrong size in the copyBufPool")
    	}
    	copyBufPool.Put((*[copyBufPoolSize]byte)(b))
    }
    
    func bufioWriterPool(size int) *sync.Pool {
    	switch size {
    	case 2 << 10:
    		return &bufioWriter2kPool
    	case 4 << 10:
    		return &bufioWriter4kPool
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    				if c.GetRingHashLbConfig().MinimumRingSize.Value != 10 {
    					return fmt.Errorf("unexpected min ring hash size. expected: %v, got: %v", 10, c.GetRingHashLbConfig().MinimumRingSize.Value)
    				}
    				return nil
    			},
    		},
    		{
    			"consistent hash settings with RingHash with min ringsize size defined along with deprecated minring size",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    turned in to a zero-initialized buffer, and the size is initialized to 0
    for `tf.EmptyTensorList` or the specified size for `tf.TensorListReserve`.
    Each push will be turned into `tf.XlaDynamicUpdateSlice` with the incremented
    size, and each pop will be turned into a `tf.Slice` and a copy of the buffer
    with decremented size. Each `tf.TensorListSetItem` will be turned into a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK:      metadata
        // CHECK-SAME: args
        // CHECK-SAME: shape {\0A dim {\0A size: -1\0A }\0A dim {\0A size: -1\0A }\0A dim {\0A size: 3\0A }\0A }
        func.return %0: tensor<?x?x3xi32>
      }
      func.func @_func(%arg0: tensor<?x?x3xi32>) -> tensor<?x?x3xi32> {
        func.return %arg0 : tensor<?x?x3xi32>
      }
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // stores
    (Store {t} ptr val mem) && t.Size() == 1 => (MOVBstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVWstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 8 && !t.IsFloat() => (MOVDstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 &&  t.IsFloat() => (FMOVSstore ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{tfl.reshape' op requires 'shape' to have at most one dynamic dimension, but got multiple dynamic dimensions at indices 0 and 1. You need to set up the unspecified size(s) to avoid this problem, for example,setting batch size in keras model or setting unspecified input size(s) with fixed ones.}}
      %0 = "tfl.reshape"(%arg0, %cst) : (tensor<3x4xi32>, tensor<3xi32>) -> tensor<1x3x4xi32>
      func.return %0 : tensor<1x3x4xi32>
    }
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top