Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for indirectly (0.17 sec)

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

    		return false // ±0
    	case 0xff:
    		return false // ±inf
    	case 0xfe:
    		return false // exponent is not representable
    	default:
    		return true
    	}
    }
    
    // check if an immediate can be directly encoded into an ARM's instruction.
    func isARMImmRot(v uint32) bool {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return true
    		}
    		v = v<<2 | v>>30
    	}
    
    	return false
    }
    
    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/sts-handlers_test.go

    	// 3. Check S3 access for download
    	c.mustDownload(ctx, svcClient, bucket)
    }
    
    // In this test, the parent users gets their permissions from a group, rather
    // than having a policy set directly on them.
    func (s *TestSuiteIAM) TestLDAPSTSServiceAccountsWithGroups(c *check) {
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    	defer cancel()
    
    	bucket := getRandomBucketName()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top