Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for fwmark (0.2 sec)

  1. pkg/proxy/apis/config/types.go

    )
    
    // KubeProxyIPTablesConfiguration contains iptables-related configuration
    // details for the Kubernetes proxy server.
    type KubeProxyIPTablesConfiguration struct {
    	// masqueradeBit is the bit of the iptables fwmark space to use for SNAT if using
    	// the iptables or ipvs proxy mode. Values must be within the range [0, 31].
    	MasqueradeBit *int32
    	// masqueradeAll tells kube-proxy to SNAT all traffic sent to Service cluster IPs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. cmd/kube-proxy/app/server.go

    	fs.Int32Var(o.config.IPTables.MasqueradeBit, "iptables-masquerade-bit", ptr.Deref(o.config.IPTables.MasqueradeBit, 14), "If using the iptables or ipvs proxy mode, the bit of the fwmark space to mark packets requiring SNAT with.  Must be within the range [0, 31].")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/analysis/cost_analysis.mlir

        // expected-remark@+1 {{Cost: 1}}
        %9 = "tf.Const"() {value = dense<> : tensor<0x!tf_type.string>} : () -> tensor<0x!tf_type.string>
        // expected-remark@+1 {{Cost: 1}}
        %10 = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        // expected-remark@+1 {{Cost: 1}}
        %11 = "tf.Const"() {value = dense<-1> : tensor<i32>} : () -> tensor<i32>
        // expected-remark@+1 {{Cost: 19}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    					// If the goroutine isn't executing, then the fact that it was in mark
    					// assist doesn't actually count.
    					break
    				}
    				// This G has been in a mark assist *and running on its P* since the start
    				// of the trace.
    				fallthrough
    			case handleSweep(r):
    				// This P has been in sweep (or mark assist, from above) in the start of the trace.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		fp11    = regInfo{inputs: []regMask{fpMask}, outputs: []regMask{fpMask}}
    		fp21    = regInfo{inputs: []regMask{fpMask, fpMask}, outputs: []regMask{fpMask}}
    		fp31    = regInfo{inputs: []regMask{fpMask, fpMask, fpMask}, outputs: []regMask{fpMask}}
    		gpfp    = regInfo{inputs: []regMask{gpMask}, outputs: []regMask{fpMask}}
    		fpgp    = regInfo{inputs: []regMask{fpMask}, outputs: []regMask{gpMask}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/unicode/letter_test.go

    		}
    		if IsLetter(r) {
    			t.Errorf("IsLetter(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsLower(r) {
    			t.Errorf("IsLower(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsMark(r) {
    			t.Errorf("IsMark(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsNumber(r) {
    			t.Errorf("IsNumber(0x%x - 1<<31) = true, want false", base)
    		}
    		if IsPrint(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    	}
    	diff = diffNFTablesChain(fake, "mark-masq-chain", "mark set mark or 0x4000\n")
    	if diff != "" {
    		t.Errorf("unexpected difference in mark-masq-chain with trailing newline:\n%s", diff)
    	}
    
    	diff = diffNFTablesChain(fake, "masquerade-chain", "mark and 0x4000 == 0 return\nmark set mark xor 0x4000\nmasquerade fully-random")
    	if diff != "" {
    		t.Errorf("unexpected difference in masquerade-chain:\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/obj6.go

    				continue
    			}
    			if q := p.To.Target(); q != nil && q.Mark&markBit == 0 {
    				q.Mark |= markBit
    				work = append(work, q)
    			}
    			if p.As == obj.AJMP || p.As == obj.ARET {
    				continue // no fallthrough
    			}
    			if q := p.Link; q != nil && q.Mark&markBit == 0 {
    				q.Mark |= markBit
    				work = append(work, q)
    			}
    		}
    	}
    
    	// Clean up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top