Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for Traverse (1.14 sec)

  1. pkg/proxy/iptables/proxier.go

    		"-A", string(kubePostroutingChain),
    		"-m", "mark", "!", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "RETURN",
    	)
    	// Clear the mark to avoid re-masquerading if the packet re-traverses the network stack.
    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-j", "MARK", "--xor-mark", proxier.masqueradeMark,
    	)
    	masqRule := []string{
    		"-A", string(kubePostroutingChain),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // and end state of each block.
    func (state *debugState) liveness() []*BlockDebug {
    	blockLocs := make([]*BlockDebug, state.f.NumBlocks())
    	counterTime := int32(1)
    
    	// Reverse postorder: visit a block after as many as possible of its
    	// predecessors have been visited.
    	po := state.f.Postorder()
    	converged := false
    
    	// The iteration rule is that by default, run until converged, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		p.Reg = v.Args[0].Reg()
    		if v.Op == ssa.OpPPC64ISEL {
    			p.AddRestSourceReg(v.Args[1].Reg())
    		} else {
    			p.AddRestSourceReg(ppc64.REG_R0)
    		}
    		// AuxInt values 4,5,6 implemented with reverse operand order from 0,1,2
    		if v.AuxInt > 3 {
    			p.Reg, p.GetFrom3().Reg = p.GetFrom3().Reg, p.Reg
    		}
    		p.From.SetConst(v.AuxInt & 3)
    
    	case ssa.OpPPC64SETBC, ssa.OpPPC64SETBCR:
    		p := s.Prog(v.Op.Asm())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // See ISA 3.0 Book II 4.3.2 for more detail. https://openpower.foundation/specifications/isa/
    (PrefetchCache ptr mem)          => (DCBT ptr mem [0])
    (PrefetchCacheStreamed ptr mem)  => (DCBT ptr mem [16])
    
    // Use byte reverse instructions on Power10
    (Bswap(16|32|64) x) && buildcfg.GOPPC64>=10 => (BR(H|W|D) x)
    
    // Fold bit reversal into loads.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	.content.content {
    		/* Make the height equal to
               the real height of content */
    		overflow: visible;
    	}
    
    	.main-content {
    		/* Main content show first */
    		flex-direction: column-reverse;
    	}
    
    	.docs-navigation.docs-navigation {
    		/* Fill the main container */
    		width: 100%;
    
    		/* Don't clip the navigation container */
    		overflow: visible;
    	}
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      } Catch { }
    
      # Add a route from the management NIC to the pod CIDR.
      #
      # When a packet from a Kubernetes service backend arrives on the destination
      # Windows node, the reverse SNAT will be applied and the source address of
      # the packet gets replaced from the pod IP to the service VIP. The packet
      # will then leave the VM and return back through hairpinning.
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top