Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 732 for MARK (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    		Short:   "Mark a node as a control-plane",
    		Example: markControlPlaneExample,
    		InheritFlags: []string{
    			options.NodeName,
    			options.CfgPath,
    			options.DryRun,
    		},
    		Run: runMarkControlPlane,
    	}
    }
    
    // runMarkControlPlane executes mark-control-plane checks logic.
    func runMarkControlPlane(c workflow.RunData) error {
    	data, ok := c.(InitData)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    	// From here on, we should be only inserting rules into our custom chains.
    
    	// CLI: -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/iptables/proxier_test.go

    				-A KUBE-MARK-MASQ -j MARK --or-mark 0x4000
    				-A KUBE-POSTROUTING -m mark ! --mark 0x4000/0x4000 -j RETURN
    				-A KUBE-POSTROUTING -j MARK --xor-mark 0x4000
    				-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -j MASQUERADE
    				-A KUBE-SEP-C6EBXVWJJZMIWKLZ -m comment --comment ns4/svc4:p80 -s 10.180.0.5 -j KUBE-MARK-MASQ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  8. test/typeparam/list2.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: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/obj.go

    		switch p.As {
    		case obj.ATEXT:
    			p.Mark |= LABEL | LEAF | SYNC
    			if p.Link != nil {
    				p.Link.Mark |= LABEL
    			}
    
    		case AMOVW,
    			AMOVV:
    			if p.To.Type == obj.TYPE_REG && p.To.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    				break
    			}
    			if p.From.Type == obj.TYPE_REG && p.From.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    			}
    
    		case ASYSCALL,
    			AWORD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/helpers_test.go

    	add table ip testing { comment "rules for kube-proxy" ; }
    
    	add chain ip testing mark-for-masquerade
    	add rule ip testing mark-for-masquerade mark set mark or 0x4000
    	add chain ip testing masquerading
    	add rule ip testing masquerading mark and 0x4000 == 0 return
    	add rule ip testing masquerading mark set mark xor 0x4000
    	add rule ip testing masquerading masquerade fully-random
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top