Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 364 for chains (0.12 sec)

  1. pilot/pkg/networking/core/listener_builder_test.go

    			if k == model.VirtualInboundListenerName && v != 3 {
    				t.Fatalf("expect virtual listener has 3 passthrough filter chains, found %d", v)
    			}
    			if k == model.VirtualInboundCatchAllHTTPFilterChainName && v != 2 {
    				t.Fatalf("expect virtual listener has 2 passthrough filter chains, found %d", v)
    			}
    		}
    
    		if tt.useExactBalance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        name parts = [MyOtherData]
                    )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses function invocations without access chains`() {
            val results = parse(
                """
                f(x = y)
                f(1)
                """.trimIndent()
            )
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/helpers_test.go

    	tx.Add(&knftables.Table{})
    	tx.Add(&knftables.Chain{
    		Name: "mark-masq-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "masquerade-chain",
    	})
    	tx.Add(&knftables.Chain{
    		Name: "empty-chain",
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: "mark-masq-chain",
    		Rule:  "mark set mark or 0x4000",
    	})
    
    	tx.Add(&knftables.Rule{
    		Chain: "masquerade-chain",
    		Rule:  "mark and 0x4000 == 0 return",
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    // are to each other we should encapsulate them some way to ensure they remain consistent (mainly that
    // in each an index refers to the same chain).
    func (ml *MutableGatewayListener) build(builder *ListenerBuilder, opts gatewayListenerOpts) error {
    	if len(opts.filterChainOpts) == 0 {
    		return fmt.Errorf("must have more than 0 chains in listener %q", ml.Listener.Name)
    	}
    	httpConnectionManagers := make([]*hcm.HttpConnectionManager, len(ml.Listener.FilterChains))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                    return (InstalledToolChain) toolChainCandidate;
                }
            }
            return null;
        }
    
        /**
         * @return A list of all known tool chains for this platform. Includes those tool chains that are not available on the current machine.
         */
        public static List<ToolChainCandidate> getToolChains() {
            if (toolChains == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway.go

    // one or more hosts but have different TLS certificates. In this case, we end up having separate filter chain
    // for each server, with the filter chain match matching on the server specific TLS certs and SNI headers.
    // We have two options here: either have all filter chains use the same RDS route name (e.g. "443") and expose
    // all virtual hosts on that port to every filter chain uniformly or expose only the set of virtual hosts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        private val projectConfigurator: CrossProjectConfigurator
    ) : GradleInternal {
    
        private
        val delegate: GradleInternal = when (gradle) {
            // 'unwrapping' ensures that there are no chains of delegation
            is CrossProjectConfigurationReportingGradle -> gradle.delegate
            else -> gradle
        }
    
        override fun getParent(): GradleInternal? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server.go

    			Intermediates: x509.NewCertPool(),
    			KeyUsages:     []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		}
    
    		for _, cert := range certs[1:] {
    			opts.Intermediates.AddCert(cert)
    		}
    
    		chains, err := certs[0].Verify(opts)
    		if err != nil {
    			var errCertificateInvalid x509.CertificateInvalidError
    			if errors.As(err, &x509.UnknownAuthorityError{}) {
    				c.sendAlert(alertUnknownCA)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables.go

    	// EnsureChain checks if the specified chain exists and, if not, creates it.  If the chain existed, return true.
    	EnsureChain(table Table, chain Chain) (bool, error)
    	// FlushChain clears the specified chain.  If the chain did not exist, return error.
    	FlushChain(table Table, chain Chain) error
    	// DeleteChain deletes the specified chain.  If the chain did not exist, return error.
    	DeleteChain(table Table, chain Chain) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            0 * attributeMatcher._
        }
    
        private void assertTransformChain(TransformedVariant chain, ResolvedVariant source, AttributeContainer finalAttributes, TransformRegistration... registrations) {
            assert chain.root == source
            assert chain.attributes == finalAttributes
            def actualSteps = []
            chain.transformChain.visitTransformSteps {
                actualSteps << it
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
Back to top