Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 110 for sve2 (0.05 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    Using GOOS=ios matches build tags and files as for GOOS=darwin
    in addition to ios tags and files.
    
    The defined architecture feature build tags are:
    
    	- For GOARCH=386, GO386=387 and GO386=sse2
    	  set the 386.387 and 386.sse2 build tags, respectively.
    	- For GOARCH=amd64, GOAMD64=v1, v2, and v3
    	  correspond to the amd64.v1, amd64.v2, and amd64.v3 feature build tags.
    	- For GOARCH=arm, GOARM=5, 6, and 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache_test.go

    			endpointSlices: []*discovery.EndpointSlice{
    				generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{}, []*int32{ptr.To[int32](80)}),
    				generateEndpointSlice("svc2", "ns1", 2, 3, 999, 999, []string{}, []*int32{ptr.To[int32](80)}),
    				generateEndpointSlice("svc1", "ns2", 3, 3, 999, 999, []string{}, []*int32{ptr.To[int32](80)}),
    			},
    			expectedMap: map[ServicePortName][]*BaseEndpointInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. src/runtime/asm_386.s

    	CMPL	SP, (g_stack+stack_lo)(AX)
    	JHI	2(PC)
    	CALL	runtime·abort(SB)
    	RET
    
    // func cputicks() int64
    TEXT runtime·cputicks(SB),NOSPLIT,$0-8
    	// LFENCE/MFENCE instruction support is dependent on SSE2.
    	// When no SSE2 support is present do not enforce any serialization
    	// since using CPUID to serialize the instruction stream is
    	// very costly.
    #ifdef GO386_softfloat
    	JMP	rdtsc  // no fence instructions available
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

          },
          "czech_stop": {
            "type":       "stop",
            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
            "keywords": ["Haló", "svět", "vyhledávání"]
          },
          "czech_stemmer": {
            "type":       "stemmer",
            "language":   "czech"
          },
          "danish_stop": {
            "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

          },
          "czech_stop": {
            "type":       "stop",
            "stopwords":  "_czech_"
          },
          "czech_keywords": {
            "type":       "keyword_marker",
            "keywords": ["Haló", "svět", "vyhledávání"]
          },
          "czech_stemmer": {
            "type":       "stemmer",
            "language":   "czech"
          },
          "danish_stop": {
            "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/analyzers_test.go

    		analyzer:   &service.PortNameAnalyzer{},
    		expected: []message{
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns/nginx"},
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns2/nginx-svc2"},
    			{msg.ExternalNameServiceTypeInvalidPortName, "Service nginx-ns3/nginx-svc3"},
    		},
    	},
    	{
    		name:       "ExternalNameServiceTypeValidPortName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage_test.go

    			// Force the same IPs and ports
    			svc2 := tc.svc.DeepCopy()
    			svc2.Name += "2"
    			svc2.Spec.ClusterIP = createdSvc.Spec.ClusterIP
    			svc2.Spec.ClusterIPs = createdSvc.Spec.ClusterIPs
    			svc2.Spec.Ports = createdSvc.Spec.Ports
    
    			// Create again
    			_, err = storage.Create(ctx, svc2, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	r, li := l.toLocal(symIdx)
    	osym := r.Sym(li)
    	sname := osym.Name(r.Reader)
    	sver := abiToVer(osym.ABI(), r.version)
    	skind := sym.AbiSymKindToSymKind[objabi.SymKind(osym.Type())]
    
    	// Create new symbol, update version and kind.
    	pi := l.newPayload(sname, sver)
    	pp := l.payloads[pi]
    	pp.kind = skind
    	pp.ver = sver
    	pp.size = int64(osym.Siz())
    	pp.objidx = r.objidx
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    }
    
    func TestServiceDiscoveryServiceDeleteOverlapping(t *testing.T) {
    	store, sd, events := initServiceDiscovery(t)
    	se1 := selector
    	se2 := func() *config.Config {
    		c := selector.DeepCopy()
    		c.Name = "alt"
    		return &c
    	}()
    	wle := createWorkloadEntry("wl", selector.Name,
    		&networking.WorkloadEntry{
    			Address:        "2.2.2.2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/386Ops.go

    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - Floating-point types live in the low natural slot of an sse2 register.
    //    Unused portions are junk.
    //  - We do not use AH,BH,CH,DH registers.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top