Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vstx (0.01 sec)

  1. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	FSCALEBD	F4, F5, F6	// a6101101
    	FLOGBF		F4, F5		// 85241401
    	FLOGBD		F4, F5		// 85281401
    
    	// VSTX/VLDX/XVSTX/XVLDX instructions
    	VMOVQ		V2, (R5)(R5)    // a2144438
    	VMOVQ		(R4)(R5), V2    // 82144038
    	XVMOVQ		X2, (R4)(R5)    // 82144c38
    	XVMOVQ		(R4)(R5), X2    // 82144838
    
    	// VST/VLD/XVST/XVLD instructions
    	VMOVQ		V2, (R4)        // 8200402c
    	VMOVQ		V2, 3(R4)       // 820c402c
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	VL	(R15), V1               // e710f0000006
    	VST	V1, (R15)               // e710f000000e
    	VL	(R15), V31              // e7f0f0000806
    	VST	V31, (R15)              // e7f0f000080e
    	VESLB	$5, V14                 // e7ee00050030
    	VESRAG	$0, V15, V16            // e70f0000383a
    	VLM	(R15), V8, V23          // e787f0000436
    	VSTM	V8, V23, (R15)          // e787f000043e
    	VONE	V1                      // e710ffff0044
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jul 30 19:29:15 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. cmd/bucket-policy.go

    		} else {
    			args[key] = values
    		}
    	}
    
    	// JWT specific values
    	//
    	// Add all string claims
    	for k, v := range claims {
    		vStr, ok := v.(string)
    		if ok {
    			// Trim any LDAP specific prefix
    			args[strings.ToLower(strings.TrimPrefix(k, "ldap"))] = []string{vStr}
    		}
    	}
    
    	// Add groups claim which could be a list. This will ensure that the claim
    	// `jwt:groups` works.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top