Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 157 for Size (0.08 sec)

  1. src/cmd/compile/internal/ssa/rewriteWasm.go

    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.Size() == 8
    	// result: (I64Load ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(t.Size() == 8) {
    			break
    		}
    		v.reset(OpWasmI64Load)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.Size() == 4 && !t.IsSigned()
    	// result: (I64Load32U ptr mem)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K 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. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // altLangIndex is used to convert indexes in altLangISO3 to langIDs.
    // Size: 12 bytes, 6 elements
    var altLangIndex = [6]uint16{
    	0x0281, 0x0407, 0x01fb, 0x03e5, 0x013e, 0x0208,
    }
    
    // AliasMap maps langIDs to their suggested replacements.
    // Size: 772 bytes, 193 elements
    var AliasMap = [193]FromTo{
    	0:   {From: 0x82, To: 0x88},
    	1:   {From: 0x187, To: 0x1ae},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

                size = response.info.getCapacity();
            } else if( getUncPath0().length() > 1 && type != TYPE_NAMED_PIPE ) {
                Info info = queryPath( getUncPath0(),
                        Trans2QueryPathInformationResponse.SMB_QUERY_FILE_STANDARD_INFO );
                size = info.getSize();
            } else {
                size = 0L;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        path: String,
        vararg headers: String?,
      ): RecordedResponse {
        val builder = Request.Builder()
        builder.url(server.url(path))
        var i = 0
        val size = headers.size
        while (i < size) {
          builder.addHeader(headers[i]!!, headers[i + 1]!!)
          i += 2
        }
        return executeSynchronously(builder.build())
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. src/crypto/sha512/sha512_test.go

    	c := New()
    	if got := c.Size(); got != Size {
    		t.Errorf("Size = %d; want %d", got, Size)
    	}
    	c = New384()
    	if got := c.Size(); got != Size384 {
    		t.Errorf("New384.Size = %d; want %d", got, Size384)
    	}
    	c = New512_224()
    	if got := c.Size(); got != Size224 {
    		t.Errorf("New512224.Size = %d; want %d", got, Size224)
    	}
    	c = New512_256()
    	if got := c.Size(); got != Size256 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  10. 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)
Back to top