Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 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/runtime/signal_amd64.go

    	// Not necessary in Snow Leopard (si_code will be != 0).
    	if GOOS == "darwin" && sig == _SIGFPE && gp.sigcode0 == 0 {
    		pc := (*[4]byte)(unsafe.Pointer(gp.sigpc))
    		i := 0
    		if pc[i]&0xF0 == 0x40 { // 64-bit REX prefix
    			i++
    		} else if pc[i] == 0x66 { // 16-bit instruction prefix
    			i++
    		}
    		if pc[i] == 0xF6 || pc[i] == 0xF7 {
    			gp.sigcode0 = _FPE_INTDIV
    		}
    	}
    
    	pc := uintptr(c.rip())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	Pq3  = 0x67 // xmm escape 3: 66 48 0f
    	Pq4  = 0x68 // xmm escape 4: 66 0F 38
    	Pq4w = 0x69 // Pq4 with Rex.w 66 0F 38
    	Pq5  = 0x6a // xmm escape 5: F3 0F 38
    	Pq5w = 0x6b // Pq5 with Rex.w F3 0F 38
    	Pfw  = 0xf4 // Pf3 with Rex.w: f3 48 0f
    	Pw   = 0x48 // Rex.w
    	Pw8  = 0x90 // symbolic; exact value doesn't matter
    	Py   = 0x80 // defaults to 64-bit mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"synagogue":                            "\U0001f54d",
    	"syria":                                "\U0001f1f8\U0001f1fe",
    	"syringe":                              "\U0001f489",
    	"t-rex":                                "\U0001f996",
    	"taco":                                 "\U0001f32e",
    	"tada":                                 "\U0001f389",
    	"taiwan":                               "\U0001f1f9\U0001f1fc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ?織組?路網???z!.&ca?gro?lim?oc?vog????x&a!.&cm,eb,gg,s&e,u,?tac,ue,yx,?t??c!.&dehcraeser,hta,ofni,s&ezziuq,lennuf,rotaluclac,t&nemssessa,set,??vog?wonyap,??e&d&ef?nay??ma!nab??rof?s??ilften?jt?m!.&bog?gro?moc?t&en?opsgolb,?ude??g?ma2ibgy--nx??o&b!x??f?rex??rbgn--nx?s!.vog??x&am&jt?kt??x???y&4punu--nx?7rr03--nx?a&d!i&loh?rfkcalb??ot!.emyfilauqerp,??g!.segap,?lp?p!ila??rot?ssin?wdaorb??b!.&duolcym,fo?hcetaidem,lim?moc!.topsgolb,?vog??ab?gur??c!.&ca?dtl?gro?lim?m&oc!.&ecrofelacs.j,topsgolb,??t??orp?s&e...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top