Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 959 for chains (0.27 sec)

  1. src/crypto/x509/verify.go

    	}
    
    	return chains, nil
    }
    
    func appendToFreshChain(chain []*Certificate, cert *Certificate) []*Certificate {
    	n := make([]*Certificate, len(chain)+1)
    	copy(n, chain)
    	n[len(chain)] = cert
    	return n
    }
    
    // alreadyInChain checks whether a candidate certificate is present in a chain.
    // Rather than doing a direct byte for byte equivalency check, we check if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// now, and record the time that they become stale in staleChains so they can be
    	// deleted later.
    	existingChains, err := proxier.nftables.List(context.TODO(), "chains")
    	if err == nil {
    		for _, chain := range existingChains {
    			if isServiceChainName(chain) {
    				if !activeChains.Has(chain) {
    					tx.Flush(&knftables.Chain{
    						Name: chain,
    					})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K 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. 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)
  5. pkg/util/iptables/testing/parse.go

    }
    
    func (dump *IPTablesDump) GetChain(table iptables.Table, chain iptables.Chain) (*Chain, error) {
    	t, err := dump.GetTable(table)
    	if err != nil {
    		return nil, err
    	}
    	for i := range t.Chains {
    		if t.Chains[i].Name == chain {
    			return &t.Chains[i], nil
    		}
    	}
    	return nil, fmt.Errorf("no such chain %q", chain)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    TEXT ·startSelf(SB),NOSPLIT,$1000-0
    	RET
    
    // Test reporting of multiple over-the-limit chains
    TEXT ·startChain(SB),NOSPLIT,$16-0
    	CALL ·chain0(SB)
    	CALL ·chain1(SB)
    	CALL ·chain2(SB)
    	RET
    TEXT ·chain0(SB),NOSPLIT,$32-0
    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chain1(SB),NOSPLIT,$48-0 // Doesn't go over
    	RET
    TEXT ·chain2(SB),NOSPLIT,$64-0
    	CALL ·chainEnd(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener.go

    		}
    		if !fullWildcardFound {
    			chain.sniHosts = append([]string{}, chain.sniHosts...)
    			sort.Stable(sort.StringSlice(chain.sniHosts))
    			match.ServerNames = chain.sniHosts
    		}
    	}
    	if len(chain.destinationCIDRs) > 0 {
    		chain.destinationCIDRs = append([]string{}, chain.destinationCIDRs...)
    		sort.Stable(sort.StringSlice(chain.destinationCIDRs))
    		for _, d := range chain.destinationCIDRs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/lds_test.go

    				chain = fc
    			}
    		}
    		if chain == nil {
    			t.Fatalf("Failed to find http_connection_manager")
    		}
    		if len(chain.Filters) != 1 {
    			t.Fatalf("Expected 1 filter in first filter chain, got %d", len(l.FilterChains))
    		}
    		filter := chain.Filters[0]
    		if filter.Name != wellknown.HTTPConnectionManager {
    			t.Fatalf("Expected HTTP connection, found %v", chain.Filters[0].Name)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/settings.gradle

    rootProject.name = 'tool-chains'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
Back to top