Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for simm (0.06 sec)

  1. src/internal/cpu/cpu_s390x_test.go

    	for _, option := range Options {
    		mapping[option.Name] = option.Feature
    	}
    
    	// these must be true on the machines Go supports
    	mandatory := make(map[string]bool)
    	mandatory["zarch"] = false
    	mandatory["eimm"] = false
    	mandatory["ldisp"] = false
    	mandatory["stfle"] = false
    
    	features, err := getFeatureList()
    	if err != nil {
    		t.Error(err)
    	}
    	for _, feature := range features {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. tools/docker-builder/crane.go

    //
    // Building in this way ends up being roughly 10x faster than docker. Future work to enable
    // sha256-simd (https://github.com/google/go-containerregistry/issues/1330) makes this even faster -
    // pushing all images drops to sub-second times, with the registry being the bottleneck (which could
    // also use sha256-simd possibly).
    func RunCrane(ctx context.Context, a Args) error {
    	ctx, span := tracing.Start(ctx, "RunCrane")
    	defer span.End()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"ς":                          "\u03c2",
    	"∼":                             "\u223c",
    	"⩪":                          "\u2a6a",
    	"≃":                            "\u2243",
    	"≃":                           "\u2243",
    	"⪞":                            "\u2a9e",
    	"⪠":                           "\u2aa0",
    	"⪝":                            "\u2a9d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"sigmav;":                          '\U000003C2',
    		"sim;":                             '\U0000223C',
    		"simdot;":                          '\U00002A6A',
    		"sime;":                            '\U00002243',
    		"simeq;":                           '\U00002243',
    		"simg;":                            '\U00002A9E',
    		"simgE;":                           '\U00002AA0',
    		"siml;":                            '\U00002A9D',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	case TypeMMAReg:
    		return A0 + Reg(a.BitFields.Parse(i))
    	case TypeSpReg:
    		return SpReg(a.BitFields.Parse(i))
    	case TypeImmSigned:
    		return Imm(a.BitFields.ParseSigned(i) << a.Shift)
    	case TypeImmUnsigned:
    		return Imm(a.BitFields.Parse(i) << a.Shift)
    	case TypePCRel:
    		return PCRel(a.BitFields.ParseSigned(i) << a.Shift)
    	case TypeLabel:
    		return Label(a.BitFields.ParseSigned(i) << a.Shift)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. docs/language_names.yml

    nr: isiNdebele
    nv: Diné bizaad
    ny: chiCheŵa
    oc: occitan
    oj: ᐊᓂᔑᓈᐯᒧᐎᓐ
    om: Afaan Oromoo
    or: ଓଡ଼ିଆ
    os: ирон æвзаг
    pa: ਪੰਜਾਬੀ
    pi: पाऴि
    pl: Polski
    ps: پښتو
    pt: português
    qu: Runa Simi
    rm: rumantsch grischun
    rn: Ikirundi
    ro: Română
    ru: русский язык
    rw: Ikinyarwanda
    sa: संस्कृतम्
    sc: sardu
    sd: सिन्धी
    se: Davvisámegiella
    sg: yângâ tî sängö
    si: සිංහල
    sk: slovenčina
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/encoder.md

    A função não retorna um grande `str` contendo os dados no formato JSON (como uma string). Mas sim, retorna uma estrutura de dados padrão do Python (por exemplo, um `dict`) com valores e subvalores compatíveis com JSON.
    
    !!! note "Nota"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_simulation_test.go

    		s := xds.NewFakeDiscoveryServer(t, o)
    		sim := simulation.NewSimulation(t, s, s.SetupProxy(proxy))
    		sim.RunExpectations(tt.calls)
    		if t.Failed() && debugMode {
    			t.Log(xdstest.MapKeys(xdstest.ExtractClusters(sim.Clusters)))
    			t.Log(xdstest.ExtractListenerNames(sim.Listeners))
    			t.Log(xdstest.DumpList(t, sim.Listeners))
    			t.Log(xdstest.DumpList(t, sim.Routes))
    			t.Log(tt.config)
    			t.Log(tt.kubeConfig)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8_generic.go

    //
    // We use the same constants as ChaCha20 does, a random seed,
    // and a counter. Running ChaCha8 on this input produces
    // a 4x4 matrix of pseudo-random values with as much entropy
    // as the seed.
    //
    // Given SIMD registers that can hold N uint32s, it is possible
    // to run N ChaCha8 block transformations in parallel by filling
    // the first register with the N copies of const1, the second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/security.go

    	re(`-fmessage-length=(.+)`),
    	re(`-f(no-)?modules`),
    	re(`-f(no-)?objc-arc`),
    	re(`-f(no-)?objc-nonfragile-abi`),
    	re(`-f(no-)?objc-legacy-dispatch`),
    	re(`-f(no-)?omit-frame-pointer`),
    	re(`-f(no-)?openmp(-simd)?`),
    	re(`-f(no-)?permissive`),
    	re(`-f(no-)?(pic|PIC|pie|PIE)`),
    	re(`-f(no-)?plt`),
    	re(`-f(no-)?rtti`),
    	re(`-f(no-)?split-stack`),
    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top