Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for hamster (0.17 sec)

  1. src/reflect/type.go

    	mt.TFlag = 0
    	mt.Hash = fnv1(etyp.Hash, 'm', byte(ktyp.Hash>>24), byte(ktyp.Hash>>16), byte(ktyp.Hash>>8), byte(ktyp.Hash))
    	mt.Key = ktyp
    	mt.Elem = etyp
    	mt.Bucket = bucketOf(ktyp, etyp)
    	mt.Hasher = func(p unsafe.Pointer, seed uintptr) uintptr {
    		return typehash(ktyp, p, seed)
    	}
    	mt.Flags = 0
    	if ktyp.Size_ > abi.MapMaxKeyBytes {
    		mt.KeySize = uint8(goarch.PtrSize)
    		mt.Flags |= 1 // indirect key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// sweeping (and hence never race with writes).
    	//
    	// This is used to quickly find whole spans that can be freed.
    	//
    	// TODO(austin): It would be nice if this was uint64 for
    	// faster scanning, but we don't have 64-bit atomic bit
    	// operations.
    	pageMarks [pagesPerArena / 8]uint8
    
    	// pageSpecials is a bitmap that indicates which spans have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Watchers stopped after startDispatching will be delayed to finishDispatching,
    
    	// Since add() can block, we explicitly add when cacher is unlocked.
    	// Dispatching event in nonblocking way first, which make faster watchers
    	// not be blocked by slower ones.
    	if event.Type == watch.Bookmark {
    		for _, watcher := range c.watchersBuffer {
    			watcher.nonblockingAdd(event)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. internal/s3select/select_test.go

    2700763,7732229,,2010-05-26 00:00:00,26,May,2010,113XX S HALSTED ST,1150,,CREDIT CARD FRAUD,,False,False,2233,22.0,34.0,,11,,,,41.688043288,-87.6422444,"(41.688043288, -87.6422444)"`
    
    	testTable := []struct {
    		name       string
    		query      string
    		requestXML []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  5. src/time/time.go

    	// Special case: d is a multiple of 1 second.
    	case d%Second == 0:
    		d1 := int64(d / Second)
    		qmod2 = int(sec/d1) & 1
    		r = Duration(sec%d1)*Second + Duration(nsec)
    
    	// General case.
    	// This could be faster if more cleverness were applied,
    	// but it's really only here to avoid special case restrictions in the API.
    	// No one will care about these cases.
    	default:
    		// Compute nanoseconds as 128-bit number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    	"github.com/stretchr/testify/require"
    )
    
    type resourceInfo struct {
    	name     v1.ResourceName
    	requests []resource.Quantity
    	levels   [][]int64
    	// only applies to pod names returned from "heapster"
    	podNames []string
    
    	targetUtilization   int32
    	expectedUtilization int32
    	expectedValue       int64
    }
    
    type metricType int
    
    const (
    	objectMetric metricType = iota
    	objectPerPodMetric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. src/sync/atomic/atomic_test.go

    	}
    }
    
    // Tests of correct behavior, with contention.
    // (Is the function atomic?)
    //
    // For each function, we write a "hammer" function that repeatedly
    // uses the atomic operation to add 1 to a value. After running
    // multiple hammers in parallel, check that we end with the correct
    // total.
    // Swap can't add 1, so it uses a different scheme.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	}
    
    	// Toolchain2 should be semantically equivalent to toolchain1,
    	// but it was built using the newly built compiler instead of the Go bootstrap compiler,
    	// so it should at the least run faster. Also, toolchain1 had no build IDs
    	// in the binaries, while toolchain2 does. In non-release builds, the
    	// toolchain's build IDs feed into constructing the build IDs of built targets,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    		}
    		if dataDir != "" {
    			versionID := fi.VersionID
    			if versionID == "" {
    				versionID = nullVersionID
    			}
    
    			// PR #11758 used DataDir, preserve it
    			// for users who might have used master
    			// branch
    			xlMeta.data.remove(versionID, dataDir)
    
    			// We need to attempt delete "dataDir" on the disk
    			// due to a CopyObject() bug where it might have
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top