Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 481 for chains (0.18 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. 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)
  6. 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)
  7. 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)
  8. pkg/security/mock.go

    		return fmt.Errorf("unsupported auth type: %q", authType)
    	}
    
    	tlsInfo := p.AuthInfo.(credentials.TLSInfo)
    	chains := tlsInfo.State.VerifiedChains
    	if len(chains) == 0 || len(chains[0]) == 0 {
    		return fmt.Errorf("no verified chain is found")
    	}
    
    	ids, err := util.ExtractIDs(chains[0][0].Extensions)
    	if err != nil {
    		return fmt.Errorf("failed to extract IDs")
    	}
    	if !sets.New(ids...).Contains(expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

        // TODO: This exists because we detect all available native tool chains on a system (clang, gcc, swiftc, msvc).
        //
        // Many of our old tests assume that available tool chains can compile many/most languages, so they do not try to
        // restrict the required set of tool chains.
        //
        // The swiftc tool chain can build _only_ Swift, so tests that expect to use the swiftc tool chain properly annotate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top