Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Staples (0.19 sec)

  1. cni/pkg/iptables/iptables.go

    	//
    	// Extreme corner case:
    	// If for some reason your host had both binaries, and you were injecting out-of-band
    	// iptables rules within a pod context into `legacy` tables, but your host context preferred
    	// `nft`, we would still inject our rules in-pod into nft tables, which is a bit wonky.
    	//
    	// But that's stunningly unlikely (and would still work either way)
    	iptVer, err := ext.DetectIptablesVersion(false)
    	if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 01:42:30 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  2. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 940 bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    	if err != nil {
    		log.Warnf("unable to list IPSet: %v", err)
    		return err
    	}
    	actual := sets.New[netip.Addr](actualIPSetContents...)
    	stales := actual.DifferenceInPlace(expected)
    
    	for staleIP := range stales {
    		if err := hostsideProbeSet.ClearEntriesWithIP(staleIP); err != nil {
    			return err
    		}
    		log.Debugf("removed stale ip %s from host ipset %s", staleIP, hostsideProbeSet.Name)
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  4. cni/pkg/plugin/plugin_dryrun_test.go

    	parts := strings.Split(string(b), "COMMIT")
    	tables := make(map[string]string)
    	for _, table := range parts {
    		// If table is not empty, get table name from the first line
    		lines := strings.Split(strings.Trim(table, "\n"), "\n")
    		if len(lines) >= 1 && strings.HasPrefix(lines[0], "* ") {
    			tableName := lines[0][2:]
    			lines = append(lines, "COMMIT")
    			tables[tableName] = strings.Join(lines, "\n")
    		}
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  5. common/config/mdl.rb

    all
    rule 'MD002', :level => 1
    rule 'MD007', :indent => 4
    rule 'MD013', :line_length => 160, :code_blocks => false, :tables => false
    rule 'MD026', :punctuation => ".,;:!"
    exclude_rule 'MD013'
    exclude_rule 'MD014'
    exclude_rule 'MD030'
    exclude_rule 'MD032'
    exclude_rule 'MD033'
    exclude_rule 'MD041'
    Ruby
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 13 19:46:27 GMT 2023
    - 317 bytes
    - Viewed (0)
Back to top