Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for rex (0.03 sec)

  1. pkg/credentialprovider/keyring_test.go

    func TestIssue3797(t *testing.T) {
    	rex := AuthConfig{
    		Username: "rex",
    		Password: "tiny arms", // Fake value for testing.
    		Email:    "rex@example.com",
    	}
    
    	dk := &BasicDockerKeyring{}
    	dk.Add(DockerConfig{
    		"https://quay.io/v1/": DockerConfigEntry{
    			Username: rex.Username,
    			Password: rex.Password,
    			Email:    rex.Email,
    		},
    	})
    
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		dataSizeIndex = -1   // index of Group 3 prefix in src and inst.Prefix
    		addrSizeIndex = -1   // index of Group 4 prefix in src and inst.Prefix
    		rex           Prefix // rex byte if present (or 0)
    		rexUsed       Prefix // bits used in rex byte
    		rexIndex      = -1   // index of rex byte
    		vex           Prefix // use vex encoding
    		vexIndex      = -1   // index of vex prefix
    
    		addrMode = mode // address mode (width in bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	PrefixXACQUIRE Prefix = 0x1F2
    	PrefixBND      Prefix = 0x2F2
    	PrefixREP      Prefix = 0xF3 // repeat
    	PrefixXRELEASE Prefix = 0x1F3
    
    	// The REX prefixes must be in the range [PrefixREX, PrefixREX+0x10).
    	// the other bits are set or not according to the intended use.
    	PrefixREX       Prefix = 0x40 // REX 64-bit extension prefix
    	PrefixREXW      Prefix = 0x08 // extension bit W (64-bit instruction width)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			break
    		}
    		if p&PrefixImplicit != 0 {
    			continue
    		}
    		switch p &^ (PrefixIgnored | PrefixInvalid) {
    		default:
    			if p.IsREX() {
    				if p&0xFF == PrefixREX {
    					prefix += "rex "
    				} else {
    					prefix += "rex." + p.String()[4:] + " "
    				}
    				break
    			}
    			prefix += strings.ToLower(p.String()) + " "
    
    		case PrefixPN:
    			op += ",pn"
    			continue
    
    		case PrefixPT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

              } catch (ExecutionException eex) {
                ee = eex;
              } catch (InterruptedException iex) {
                throw iex;
              } catch (Exception rex) { // sneaky checked exception
                ee = new ExecutionException(rex);
              }
            }
          }
    
          if (ee == null) {
            ee = new ExecutionException(null);
          }
          throw ee;
        } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/MoreExecutors.java

              } catch (ExecutionException eex) {
                ee = eex;
              } catch (InterruptedException iex) {
                throw iex;
              } catch (Exception rex) { // sneaky checked exception
                ee = new ExecutionException(rex);
              }
            }
          }
    
          if (ee == null) {
            ee = new ExecutionException(null);
          }
          throw ee;
        } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top