Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 746 for fwmark (0.19 sec)

  1. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    ip6tables -t mangle -A PREROUTING -p tcp -m mark --mark 1337 -j CONNMARK --save-mark
    ip6tables -t mangle -A OUTPUT -p tcp -o lo -m mark --mark 1337 -j RETURN
    ip6tables -t mangle -A OUTPUT ! -d ::1/128 -p tcp -o lo -m owner --uid-owner 1337 -j MARK --set-mark 1338
    ip6tables -t mangle -A OUTPUT ! -d ::1/128 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    ip6tables -t mangle -A OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/syscall/ztypes_openbsd_arm.go

    type RtMsghdr struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 02:35:39 UTC 2018
    - 6.8K bytes
    - Viewed (0)
  3. tools/istio-clean-iptables/pkg/cmd/testdata/inbound-interception-mode.golden

    iptables -t mangle -X ISTIO_DIVERT
    iptables -t mangle -F ISTIO_TPROXY
    iptables -t mangle -X ISTIO_TPROXY
    iptables -t mangle -D PREROUTING -p tcp -m mark --mark 1337 -j CONNMARK --save-mark
    iptables -t mangle -D OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    iptables -t nat -F ISTIO_REDIRECT
    iptables -t nat -X ISTIO_REDIRECT
    iptables -t nat -F ISTIO_IN_REDIRECT
    iptables -t nat -X ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge_test.go

    	}
    
    	// Each of these test cases calls mark and then find once.
    	type testCase struct {
    		name string
    		mark func(markFunc)
    		find func(findFunc)
    	}
    	for _, test := range []testCase{
    		{
    			name: "Uninitialized",
    			mark: func(_ markFunc) {},
    			find: func(_ findFunc) {},
    		},
    		{
    			name: "OnePage",
    			mark: func(mark markFunc) {
    				mark(PageBase(BaseChunkIdx, 3), PageBase(BaseChunkIdx, 4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CountingInputStream.java

      }
    
      @Override
      public synchronized void mark(int readlimit) {
        in.mark(readlimit);
        mark = count;
        // it's okay to mark even if mark isn't supported, as reset won't work
      }
    
      @Override
      public synchronized void reset() throws IOException {
        if (!in.markSupported()) {
          throw new IOException("Mark not supported");
        }
        if (mark == -1) {
          throw new IOException("Mark not set");
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. test/typeparam/listimp2.dir/a.go

    // If e or mark is not an element of l, or e == mark, the list is not modified.
    // The element and mark must not be nil.
    func (l *List[T]) MoveBefore(e, mark *Element[T]) {
    	if e.list != l || e == mark || mark.list != l {
    		return
    	}
    	l.move(e, mark.prev)
    }
    
    // MoveAfter moves element e to its new position after mark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/README.md

    Chain KUBE-MARK-DROP (1 references)
    target     prot opt source               destination
    MARK       all  --  0.0.0.0/0            0.0.0.0/0            MARK or 0x8000
    
    Chain KUBE-MARK-MASQ (2 references)
    target     prot opt source               destination
    MARK       all  --  0.0.0.0/0            0.0.0.0/0            MARK or 0x4000
    
    Chain KUBE-POSTROUTING (1 references)
    target     prot opt source               destination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  8. pkg/volume/volume_linux.go

    */
    
    package volume
    
    import (
    	"path/filepath"
    	"syscall"
    
    	"os"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	rwMask   = os.FileMode(0660)
    	roMask   = os.FileMode(0440)
    	execMask = os.FileMode(0110)
    )
    
    // SetVolumeOwnership modifies the given volume to be owned by
    // fsGroup, and sets SetGid so that newly created files are owned by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

                            mark = si + 1;
                            state = 5;
                        }
                        break;
                    case 5:
                        if (ch == '=') {
                            key = str.substring(mark, si).trim();
                            mark = si + 1;
                        } else if (ch == ',' || ch == ']') {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  10. tests/utils.py

    import sys
    
    import pytest
    from fastapi._compat import PYDANTIC_V2
    
    needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9+")
    needs_py310 = pytest.mark.skipif(
        sys.version_info < (3, 10), reason="requires python3.10+"
    )
    needs_pydanticv2 = pytest.mark.skipif(not PYDANTIC_V2, reason="requires Pydantic v2")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 422 bytes
    - Viewed (0)
Back to top