Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for Proxier (0.32 sec)

  1. releasenotes/notes/delta-xds-default.yaml

          The expected impacts of this change is improved performance of configuration distribution.
          This may result in reduced CPU and memory utilization in Istiod and proxies, as well as less network traffic between the two.
          Note that while this release changes the *protocol* to be incremental, Istio does not yet send perfect minimal incremental updates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java

                            "proxy: " + proxy.getId(),
                            -1,
                            -1,
                            e));
                }
    
                proxies.add(proxy);
            }
    
            return new DefaultSettingsDecryptionResult(servers, proxies, problems);
        }
    
        private String decrypt(String str) throws SecDispatcherException {
            return (str == null) ? null : securityDispatcher.decrypt(str);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/internal/http/RecordingProxySelector.kt

    import okhttp3.internal.format
    
    class RecordingProxySelector : ProxySelector() {
      @JvmField val proxies = mutableListOf<Proxy>()
    
      private val requestedUris = mutableListOf<URI>()
      private val failures = mutableListOf<String>()
    
      override fun select(uri: URI): List<Proxy> {
        requestedUris.add(uri)
        return proxies
      }
    
      fun assertRequests(vararg expectedUris: URI?) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

                MavenExecutionRequest request = session.getRequest();
    
                if (request != null) {
                    List<Proxy> proxies = request.getProxies();
    
                    if (proxies != null) {
                        for (Proxy proxy : proxies) {
                            if (proxy.isActive() && protocol.equalsIgnoreCase(proxy.getProtocol())) {
                                SettingsDecryptionResult result =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * with the wrong proxies.
         *
         * @param repositories The repositories into which to inject the proxy information, may be {@code null}.
         * @param proxies The available proxies, may be {@code null}.
         */
        void injectProxy(List<ArtifactRepository> repositories, List<org.apache.maven.settings.Proxy> proxies);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/ClientRuleEventListener.kt

        delegate.proxySelectStart(call, url)
      }
    
      override fun proxySelectEnd(
        call: Call,
        url: HttpUrl,
        proxies: List<Proxy>,
      ) {
        logWithTime("proxySelectEnd: $proxies")
    
        delegate.proxySelectEnd(call, url, proxies)
      }
    
      override fun dnsStart(
        call: Call,
        domainName: String,
      ) {
        logWithTime("dnsStart: $domainName")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/utils.kt

        else -> sameType(valueType, isAssignableTo)
    }
    
    
    /**
     * Can't check for equality: TAPI proxies are not equal to the original implementations.
     * TODO: maybe "reify" the TAPI proxies to ensure equality?
     */
    private
    fun sameType(left: DataType, right: DataType) = when (left) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. releasenotes/notes/strict_1xx_204_fix.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 195 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Among other files, this directory contains functionality for two
    // stream proxies: streamtranslator.go and streamtunnel.go. Both of
    // these proxies allow the inter-connection of WebSocket and SPDY
    // streaming connections.
    //
    // The stream translator proxy is used for the RemoteCommand
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. releasenotes/notes/network-gw-metadata.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
      - |
        **Fixed** a bug where `destination_cluster` reported by client proxies may be wrong
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 03:59:34 UTC 2024
    - 220 bytes
    - Viewed (0)
Back to top