Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 720 for chain (0.41 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        val interceptedCount = AtomicInteger()
        client =
          client.newBuilder()
            .addInterceptor(
              Interceptor { chain: Interceptor.Chain ->
                assertThat(chain.request().body).isNull()
                val response = chain.proceed(chain.request())
                assertThat(response.header("Connection")).isEqualTo("Upgrade")
                assertThat(response.body).isInstanceOf<UnreadableResponseBody>()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

    	ProxyMetadataJSON = `
    	{
          "FILE_MOUNTED_CERTS": "true",
          "ISTIO_META_TLS_CLIENT_CERT_CHAIN": "/client-certs/cert-chain.pem",
          "ISTIO_META_TLS_CLIENT_KEY": "/client-certs/key.pem",
          "ISTIO_META_TLS_CLIENT_ROOT_CERT": "/client-certs/root-cert.pem",
          "ISTIO_META_TLS_SERVER_CERT_CHAIN": "/server-certs/cert-chain.pem",
          "ISTIO_META_TLS_SERVER_KEY": "/server-certs/key.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                            )
                        ]
                    )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses function invocation after an access chain`() {
            val results = parse(
                """
                f.g.h.i.j.k(test)
                """.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)
  4. pkg/util/iptables/iptables_test.go

    	}
    	runner := New(fexec, protocol)
    	// Success.
    	exists, err := runner.EnsureChain(TableNAT, Chain("FOOBAR"))
    	if err != nil {
    		t.Errorf("%s new chain: Expected success, got %v", protocol, err)
    	}
    	if exists {
    		t.Errorf("%s new chain: Expected exists = false", protocol)
    	}
    	if fcmd.CombinedOutputCalls != 2 {
    		t.Errorf("%s new chain: Expected 2 CombinedOutput() calls, got %d", protocol, fcmd.CombinedOutputCalls)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway.go

    				opts.filterChainOpts = append(opts.filterChainOpts, httpFilterChainOpts)
    			} else {
    				// we are building a network filter chain (no http connection manager) for this filter chain
    				// For network filters such as mysql, mongo, etc., we need the filter codec upfront. Data from this
    				// codec is used by RBAC later.
    				// This is the case of TCP or PASSTHROUGH.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

        } catch (ignored: IllegalArgumentException) {
        }
      }
    
      @Test fun clonedInterceptorsListsAreIndependent() {
        val interceptor =
          Interceptor { chain: Interceptor.Chain ->
            chain.proceed(chain.request())
          }
        val original = clientTestRule.newClient()
        original.newBuilder()
          .addInterceptor(interceptor)
          .addNetworkInterceptor(interceptor)
          .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    Of all the found transform chains, Gradle tries to select the best one:
    
    - If there is only one transform chain, it is selected.
    - If there are two transform chains, and one is a suffix of the other one, it is selected.
    - If there is a shortest transform chain, then it is selected.
    - In all other cases, the selection fails and an error is reported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    link:https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-supply-chain-security[GitHub supply chain security] features will detect and alert about any dependencies that have known vulnerabilities.
    In order to do this, GitHub requires a complete dependency graph for your project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

            }
        });
        private static List<ToolChainCandidate> toolChains;
    
        /**
         * Locates the tool chain that would be used as the default for the current machine, if any.
         *
         * @return null if there is no such tool chain.
         */
        @Nullable
        public static InstalledToolChain getDefaultToolChain() {
            for (ToolChainCandidate toolChain : getToolChains()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/builder.go

    			if err != nil {
    				b.logger.AppendDebugf("skipped rule %s on TCP filter chain: %v", name, err)
    				continue
    			}
    			if generated != nil {
    				currentRule.Policies[name] = generated
    				b.logger.AppendDebugf("generated config from rule %s on %s filter chain successfully", name, filterType)
    			}
    		}
    		if len(policy.Spec.Rules) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top