Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for chains (0.09 sec)

  1. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

        public void addChain(final AuthenticationChain chain) {
            chains = ArrayUtils.addAll(chains, chain);
        }
    
        protected StreamOf<AuthenticationChain> chains() {
            return stream(chains);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	// Flush and delete the istio chains from NAT table.
    	chains := []string{constants.ISTIOOUTPUT, constants.ISTIOINBOUND}
    	flushAndDeleteChains(ext, iptV, constants.NAT, chains)
    	// Flush and delete the istio chains from MANGLE table.
    	chains = []string{constants.ISTIOINBOUND, constants.ISTIODIVERT, constants.ISTIOTPROXY}
    	flushAndDeleteChains(ext, iptV, constants.MANGLE, chains)
    
    	if cfg.InboundInterceptionMode == constants.TPROXY {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tools/packaging/common/istio-start.sh

        # clean the previous Istio iptables chains.
        "${ISTIO_BIN_BASE}/pilot-agent" istio-clean-iptables
      fi
      exit 0
    fi
    
    # Init option will only initialize iptables. set ISTIO_CUSTOM_IP_TABLES to true if you would like to ignore this step
    if [ "${ISTIO_CUSTOM_IP_TABLES}" != "true" ] ; then
        if [[ ${1-} == "init" || ${1-} == "-p" ]] ; then
          # clean the previous Istio iptables chains. This part is different from the init image mode,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. releasenotes/notes/trim-certificate-chain.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 175 bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listenertest/match.go

    	// present.
    	TotalMatch bool
    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    	// Port the filter chain matches
    	Port uint32
    
    	NetworkFilters []string
    	HTTPFilters    []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pilot/test/xdstest/validate.go

    		}
    	}
    }
    
    func validateFilterChainMatch(t testing.TB, l *listener.Listener) {
    	t.Helper()
    
    	// Check for duplicate filter chains, to avoid "multiple filter chains with the same matching rules are defined" error
    	check := map[string]int{}
    	for i1, l1 := range l.FilterChains {
    		// We still create virtual inbound listeners before merging into single inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline_refvar.mlir

    // CHECK-NEXT: [[out_ch:%.*]] = tfrt.merge.chains [[o_chain]], [[o_chain_0]]
    // CHECK-NEXT: tfrt.return [[out_ch]], [[o1]] : !tfrt.chain, !tfrt_fallback.tf_tensor
    module attributes {tf.devices = ["/job:localhost/replica:0/task:0/device:CPU:0"], tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 679 : i32}}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/constants/constants.go

    package constants
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // iptables tables
    const (
    	MANGLE = "mangle"
    	NAT    = "nat"
    	FILTER = "filter"
    	RAW    = "raw"
    )
    
    // Built-in iptables chains
    const (
    	INPUT       = "INPUT"
    	OUTPUT      = "OUTPUT"
    	FORWARD     = "FORWARD"
    	PREROUTING  = "PREROUTING"
    	POSTROUTING = "POSTROUTING"
    )
    
    var BuiltInChainsMap = map[string]struct{}{
    	INPUT:       {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/tf_to_corert_pipeline.mlir

    // CHECK-NEXT: [[out_chain:%.*]] = tfrt.merge.chains [[o2_chain]], [[o3_chain]], [[o4_chain]], [[o5_chain]]
    // CHECK-NEXT: tfrt.return [[out_chain]], [[o9]], [[o5]], [[o8]], [[o6]], [[arg1]], [[o3]] : !tfrt.chain, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor, !tfrt_fallback.tf_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/builder/iptables_builder_impl.go

    		*ipt = append(*ipt, &Rule{
    			chain:  chain,
    			table:  table,
    			params: append([]string{"-A", chain}, match...),
    		})
    	}
    	rules := params
    	*ipt = append(*ipt, &Rule{
    		chain:  chain,
    		table:  table,
    		params: append([]string{"-A", chain}, rules...),
    	})
    	return rb
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top