Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for UInt32 (0.29 sec)

  1. src/fmt/fmt_test.go

    	{"%#o", 01234, "01234"},
    	{"%#o", -01234, "-01234"},
    	{"%O", 01234, "0o1234"},
    	{"%O", -01234, "-0o1234"},
    	{"%o", ^uint32(0), "37777777777"},
    	{"%o", ^uint64(0), "1777777777777777777777"},
    	{"%#X", 0, "0X0"},
    	{"%x", 0x12abcdef, "12abcdef"},
    	{"%X", 0x12abcdef, "12ABCDEF"},
    	{"%x", ^uint32(0), "ffffffff"},
    	{"%X", ^uint64(0), "FFFFFFFFFFFFFFFF"},
    	{"%.20b", 7, "00000000000000000111"},
    	{"%10d", 12345, "     12345"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    func TestMigrateSerialColumn(t *testing.T) {
    	if DB.Dialector.Name() != "postgres" {
    		return
    	}
    
    	type Event struct {
    		ID  uint `gorm:"primarykey"`
    		UID uint32
    	}
    
    	type Event1 struct {
    		ID  uint   `gorm:"primarykey"`
    		UID uint32 `gorm:"not null;autoIncrement"`
    	}
    
    	type Event2 struct {
    		ID  uint   `gorm:"primarykey"`
    		UID uint16 `gorm:"not null;autoIncrement"`
    	}
    
    	var err error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    						slotLoc := state.currentState.slots[slotID]
    						if slotLoc.absent() {
    							startState.Delete(int32(slotID))
    							continue
    						}
    						old := startState.Find(int32(slotID)) // do NOT replace existing values
    						if oldLS, ok := old.(*liveSlot); !ok || oldLS.VarLoc != slotLoc {
    							startState.Insert(int32(slotID),
    								&liveSlot{VarLoc: slotLoc})
    						}
    					}
    					locs.endState = startState
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    		}
    		// Set session affinity flag and timeout for IPVS service
    		if svcInfo.SessionAffinityType() == v1.ServiceAffinityClientIP {
    			serv.Flags |= utilipvs.FlagPersistent
    			serv.Timeout = uint32(svcInfo.StickyMaxAgeSeconds())
    		}
    		// Set the source hash flag needed for the distribution method "mh"
    		if proxier.ipvsScheduler == "mh" {
    			serv.Flags |= utilipvs.FlagSourceHash
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	ptrmask := typ.GCData
    	buf := &getg().m.p.ptr().wbBuf
    	var bits uint32
    	for i := uintptr(0); i < typ.PtrBytes; i += goarch.PtrSize {
    		if i&(goarch.PtrSize*8-1) == 0 {
    			bits = uint32(*ptrmask)
    			ptrmask = addb(ptrmask, 1)
    		} else {
    			bits = bits >> 1
    		}
    		if bits&1 != 0 {
    			dstx := (*uintptr)(unsafe.Pointer(dst + i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	}
    	return id
    }
    
    func assignID_32(text []int32, sa []int32, numLMS int) int {
    	id := 0
    	lastLen := int32(-1) // impossible
    	lastPos := int32(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    		g.Expect(len(routes)).To(Equal(1))
    
    		directResponseAction, ok := routes[0].Action.(*envoyroute.Route_DirectResponse)
    		g.Expect(ok).NotTo(BeFalse())
    		g.Expect(directResponseAction.DirectResponse.Status).To(Equal(uint32(200)))
    		g.Expect(directResponseAction.DirectResponse.Body.Specifier.(*envoycore.DataSource_InlineString).InlineString).To(Equal("hello"))
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    			// TODO: deduplicate this struct from cmd/link/internal/ld/pe.go
    			type IMAGE_EXPORT_DIRECTORY struct {
    				_                 [2]uint32
    				_                 [2]uint16
    				_                 [2]uint32
    				NumberOfFunctions uint32
    				NumberOfNames     uint32
    				_                 [3]uint32
    			}
    			var e IMAGE_EXPORT_DIRECTORY
    			if err := binary.Read(section.Open(), binary.LittleEndian, &e); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	c.bool = c.Ident("bool")
    	c.byte = c.Ident("byte")
    	c.int8 = c.Ident("int8")
    	c.int16 = c.Ident("int16")
    	c.int32 = c.Ident("int32")
    	c.int64 = c.Ident("int64")
    	c.uint8 = c.Ident("uint8")
    	c.uint16 = c.Ident("uint16")
    	c.uint32 = c.Ident("uint32")
    	c.uint64 = c.Ident("uint64")
    	c.uintptr = c.Ident("uintptr")
    	c.float32 = c.Ident("float32")
    	c.float64 = c.Ident("float64")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    bool BoolFromGTestEnv(const char* flag, bool default_val);
    GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val);
    const char* StringFromGTestEnv(const char* flag, const char* default_val);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top