Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for 8128 (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    				(MOVDstore ptr (MOVDconst [0]) mem))))
    
    // Medium 8-aligned zeroing uses a Duff's device
    // 8 and 128 are magic constants, see runtime/mkduff.go
    (Zero [s] {t} ptr mem)
    	&& s%8 == 0 && s <= 8*128
    	&& t.Alignment()%8 == 0 && !config.noDuffDevice =>
    	(DUFFZERO [8 * (128 - s/8)] ptr mem)
    
    // Generic zeroing uses a loop
    (Zero [s] {t} ptr mem) =>
    	(LoweredZero [t.Alignment()]
    		ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge_test.go

    			mark: func(mark markFunc) {
    				mark(PageBase(BaseChunkIdx, 128), PageBase(BaseChunkIdx+1, 128))
    			},
    			find: func(find findFunc) {
    				find(BaseChunkIdx+1, 127)
    				find(BaseChunkIdx, PallocChunkPages-1)
    			},
    		},
    		{
    			name: "TwoChunksOffset",
    			mark: func(mark markFunc) {
    				mark(PageBase(BaseChunkIdx+7, 128), PageBase(BaseChunkIdx+8, 129))
    			},
    			find: func(find findFunc) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (Zero [s] {t} ptr mem)
    	// cond: s%8 == 0 && s <= 8*128 && t.Alignment()%8 == 0 && !config.noDuffDevice
    	// result: (DUFFZERO [8 * (128 - s/8)] ptr mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		t := auxToType(v.Aux)
    		ptr := v_0
    		mem := v_1
    		if !(s%8 == 0 && s <= 8*128 && t.Alignment()%8 == 0 && !config.noDuffDevice) {
    			break
    		}
    		v.reset(OpRISCV64DUFFZERO)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/tunneling_test.go

    var forwardProxyConfigurations = []forwardproxy.ListenerSettings{
    	{
    		Port:        3128,
    		HTTPVersion: forwardproxy.HTTP1,
    		TLSEnabled:  false,
    	},
    	{
    		Port:        4128,
    		HTTPVersion: forwardproxy.HTTP1,
    		TLSEnabled:  true,
    	},
    	{
    		Port:        5128,
    		HTTPVersion: forwardproxy.HTTP2,
    		TLSEnabled:  false,
    	},
    	{
    		Port:        6128,
    		HTTPVersion: forwardproxy.HTTP2,
    		TLSEnabled:  true,
    	},
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-empty-inbound-ports.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/capture/testdata/ipv6-outbound-ports.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/ipv6-virt-interfaces.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ipv6-inbound-ports.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/testdata/ipv6-ipnets.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    ip6tables -t nat -A ISTIO_OUTPUT -o lo -s ::6/128 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -o lo ! -d ::1/128 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 1337 -j ISTIO_IN_REDIRECT
    ip6tables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --uid-owner 1337 -j RETURN
    ip6tables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top