Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,101 for chains (0.13 sec)

  1. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/util/iptables/testing/fake.go

    	if c, _ := f.Dump.GetChain(table, chain); c != nil {
    		c.Rules = nil
    	}
    	return nil
    }
    
    // DeleteChain is part of iptables.Interface
    func (f *FakeIPTables) DeleteChain(table iptables.Table, chain iptables.Chain) error {
    	t, err := f.Dump.GetTable(table)
    	if err != nil {
    		return err
    	}
    	for i := range t.Chains {
    		if t.Chains[i].Name == chain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. releasenotes/notes/peer-authn-port-level-pass-through-filter.yaml

    upgradeNotes:
      - title: PeerAuthentication per-port-level configuration will now also apply to pass through filter chains.
        content: |
          Previously the PeerAuthentication per-port-level configuration is ignored if the port number is not defined in a
          service and the traffic will be handled by a pass through filter chain. Now the per-port-level setting will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 22:43:51 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    		}
    		// Build the actual chain
    		chains := lb.inboundChainForOpts(cc, mtls, opts)
    
    		if cc.bindToPort {
    			// If this config is for bindToPort, we want to actually create a real Listener.
    			listeners = append(listeners, lb.inboundCustomListener(cc, chains))
    		} else {
    			// Otherwise, just append the filter chain to the virtual inbound chains.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/cert_authenticator.go

    		return nil, fmt.Errorf("unsupported auth type: %q", authType)
    	}
    
    	tlsInfo := peer.AuthInfo.(credentials.TLSInfo)
    	chains := tlsInfo.State.VerifiedChains
    	if len(chains) == 0 || len(chains[0]) == 0 {
    		return nil, fmt.Errorf("no verified chain is found")
    	}
    
    	ids, err := util.ExtractIDs(chains[0][0].Extensions)
    	if err != nil {
    		return nil, err
    	}
    
    	return &security.Caller{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    // not match. This means an empty match (`{}`) may not match if another chain
    // matches one criteria but not another.
    func (sim *Simulation) matchFilterChain(chains []*listener.FilterChain, defaultChain *listener.FilterChain,
    	input Call, hasTLSInspector bool,
    ) (*listener.FilterChain, error) {
    	chains = filter("DestinationPort", chains, func(fc *listener.FilterChainMatch) bool {
    		return fc.GetDestinationPort() == nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/util/iptables/save_restore_test.go

    	expected := sets.New(
    		ChainPrerouting,
    		Chain("INPUT"),
    		Chain("OUTPUT"),
    		ChainPostrouting,
    		Chain("DOCKER"),
    		Chain("KUBE-NODEPORT-CONTAINER"),
    		Chain("KUBE-NODEPORT-HOST"),
    		Chain("KUBE-PORTALS-CONTAINER"),
    		Chain("KUBE-PORTALS-HOST"),
    		Chain("KUBE-SVC-1111111111111111"),
    		Chain("KUBE-SVC-2222222222222222"),
    		Chain("KUBE-SVC-3333333333333333"),
    		Chain("KUBE-SVC-4444444444444444"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/crypto/x509/root_windows.go

    	chain, topErr := verifyChain(c, topCtx, opts)
    	if topErr == nil {
    		chains = append(chains, chain)
    	}
    
    	if lqCtxCount := topCtx.LowerQualityChainCount; lqCtxCount > 0 {
    		lqCtxs := unsafe.Slice(topCtx.LowerQualityChains, lqCtxCount)
    		for _, ctx := range lqCtxs {
    			chain, err := verifyChain(c, ctx, opts)
    			if err == nil {
    				chains = append(chains, chain)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top