Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 370 for chains (0.16 sec)

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

    			},
    			Disabled: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    				ClusterMatched:     "inbound|81||",
    				StrictMatch:        true,
    			},
    			Permissive: simulation.Result{
    				// Should go through the TCP chains
    				ListenerMatched:    "virtualInbound",
    				FilterChainMatched: "0.0.0.0_81",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

        private val problemFactory: ProblemFactory
    ) : TaskExecutionGraphInternal {
    
        private
        val delegate: TaskExecutionGraphInternal = when (taskGraph) {
            // 'unwrapping' ensures that there are no chains of delegation
            is CrossProjectConfigurationReportingTaskExecutionGraph -> taskGraph.delegate
            else -> taskGraph
        }
    
        override fun addTaskExecutionGraphListener(listener: TaskExecutionGraphListener) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    // - plaintext requests are not affected
    // - same trust domain (cluster.local) and aliases (trust-domain-foo and trust-domain-bar)
    // - works for both HTTP and TCP protocol
    // - works for pass through filter chains
    func TestTrustDomainValidation(t *testing.T) {
    	framework.NewTest(t).Run(
    		func(ctx framework.TestContext) {
    			testNS := apps.EchoNamespace.Namespace
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    //
    // By moving the logic to compile time, we will be able to do a finer-grained
    // data flow analysis in the future, which will enable more optimizations.
    // This could happen in two steps:
    // (1) build multiple dependency chains (one per variable), still treating
    //     function/subgraph calls as black boxes (i.e., all variables would
    //     be assumed to be read and modified within control operations)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      return true;
    }
    
    // Populates `chain_resource_to_ops_map`, the map from all resources that need
    // to be chained to the set of operations that access the resource, and
    // `resource_equivalence_classes`. Resources are equivalent if they are accessed
    // by a common op, and equivalent resources will be assigned to the same chain.
    void CollectChainResources(
        func::FuncOp func, ResourceToOpsMapTy& chain_resource_to_ops_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/fromLanguageTree/LanguageTreeToDom.kt

            is FunctionCall -> run {
                val errors = mutableListOf<DocumentError>()
                // Check for receiver: if it is a complex expression, it cannot be expressed in a DOM; but we can handle access chains as chained names
                val name = when (expr.receiver) {
                    null -> expr.name
                    is PropertyAccess ->
                        expr.receiver.asChainedNameOrNull()?.plus(".${expr.name}") ?: run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top