Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for sve2 (0.04 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "sha3", Feature: &ARM64.HasSHA3},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "sm3", Feature: &ARM64.HasSM3},
    		{Name: "sm4", Feature: &ARM64.HasSM4},
    		{Name: "sve", Feature: &ARM64.HasSVE},
    		{Name: "sve2", Feature: &ARM64.HasSVE2},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "asimdhp", Feature: &ARM64.HasASIMDHP},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

          uri:
            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - headers:
            my-header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/helpers_test.go

    	# svc2
    	add chain ip testing service-42NFTM6N-ns2/svc2/tcp/p80
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 ip daddr 172.30.0.42 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    	add rule ip testing service-42NFTM6N-ns2/svc2/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml

            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
          - name: my-header
            value: some-value
            type: Exact
          queryParams:
          - name: my-param
            value: some-value
            type: RegularExpression
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. test/codegen/floats.go

    // --------------------- //
    
    func Mul2(f float64) float64 {
    	// 386/sse2:"ADDSD",-"MULSD"
    	// amd64:"ADDSD",-"MULSD"
    	// arm/7:"ADDD",-"MULD"
    	// arm64:"FADDD",-"FMULD"
    	// ppc64x:"FADD",-"FMUL"
    	// riscv64:"FADDD",-"FMULD"
    	return f * 2.0
    }
    
    func DivPow2(f1, f2, f3 float64) (float64, float64, float64) {
    	// 386/sse2:"MULSD",-"DIVSD"
    	// amd64:"MULSD",-"DIVSD"
    	// arm/7:"MULD",-"DIVD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/parse_test.go

    			rule: `-A KUBE-NODEPORTS -m comment --comment "ns2/svc2:p80 health check node port" -m tcp -p tcp --dport 30000 -j ACCEPT`,
    			parsed: &Rule{
    				Raw:             `-A KUBE-NODEPORTS -m comment --comment "ns2/svc2:p80 health check node port" -m tcp -p tcp --dport 30000 -j ACCEPT`,
    				Chain:           iptables.Chain("KUBE-NODEPORTS"),
    				Comment:         &IPTablesValue{Value: "ns2/svc2:p80 health check node port"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/benchmark-httproute.yaml

            value: /bar
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
            type: Exact
            value: /baz
          headers:
          - name: my-header
            value: some-value
            type: Exact
          queryParams:
          - name: my-param
            value: some-value
            type: RegularExpression
        backendRefs:
        - name: svc2
          port: 80
      - matches:
        - path:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/proxy/config/api_test.go

    		{Name: svc1.Name, Namespace: svc1.Namespace}: svc1,
    		{Name: svc2.Name, Namespace: svc2.Namespace}: svc2,
    	}
    	expectedEpsState := map[types.NamespacedName]*discoveryv1.EndpointSlice{
    		{Name: eps1.Name, Namespace: eps1.Namespace}: eps1,
    		{Name: eps2.Name, Namespace: eps2.Namespace}: eps2,
    	}
    
    	// Setup fake api client.
    	client := fake.NewSimpleClientset(svc1, svc2, eps2, eps1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/tooltags.txt

    stderr 'go: invalid GORISCV64: must be rva20u64, rva22u64'
    
    env GOARCH=riscv64
    env GORISCV64=
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=386
    env GO386=sse2
    go list -f '{{context.ToolTags}}'
    stdout '386.sse2'
    
    env GOARCH=wasm
    env GOWASM=satconv
    go list -f '{{context.ToolTags}}'
    stdout 'wasm.satconv'
    
    -- go.mod --
    module m
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/cs/protwords.txt

    Haló
    svět
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 11 12:51:31 UTC 2016
    - 26 bytes
    - Viewed (0)
Back to top