Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rounds (0.14 sec)

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

    //	B) decrement use counts of the values' args.
    func clobber(vv ...*Value) bool {
    	for _, v := range vv {
    		v.reset(OpInvalid)
    		// Note: leave v.Block intact.  The Block field is used after clobber.
    	}
    	return true
    }
    
    // clobberIfDead resets v when use count is 1. Returns true.
    // clobberIfDead is used by rewrite rules to decrement
    // use counts of v's args when v is dead and never used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		defer func() {
    			cache.updatedAt = time.Now()
    			store.unlock()
    		}()
    
    		_, found := cache.iamUsersMap[accessKey]
    
    		// Check for regular user access key
    		if !found {
    			err = store.loadUser(ctx, accessKey, regUser, cache.iamUsersMap)
    			if _, found = cache.iamUsersMap[accessKey]; found {
    				// load mapped policies
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. .bazelrc

    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top