Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 308 for Proxier (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        public List<Proxy> getProxies() {
            if (proxies == null) {
                proxies = new ArrayList<>();
            }
            return proxies;
        }
    
        @Override
        public MavenExecutionRequest setProxies(List<Proxy> proxies) {
            if (proxies != null) {
                this.proxies = new ArrayList<>(proxies);
            } else {
                this.proxies = null;
            }
    
            return this;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

         */
        public synchronized Proxy getActiveProxy() {
            if (activeProxy == null) {
                java.util.List<Proxy> proxies = getProxies();
                if (proxies != null && !proxies.isEmpty()) {
                    for (Proxy proxy : proxies) {
                        if (proxy.isActive()) {
                            activeProxy = proxy;
                            break;
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. releasenotes/notes/sidecar-vs-delegate.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 02:00:37 UTC 2020
    - 151 bytes
    - Viewed (0)
  10. README.md

    layer over the underlying cluster management platform, such as Kubernetes.
    
    Istio is composed of these components:
    
    - **Envoy** - Sidecar proxies per microservice to handle ingress/egress traffic
       between services in the cluster and from a service to external
       services. The proxies form a _secure microservice mesh_ providing a rich
       set of functions like discovery, rich layer-7 routing, circuit breakers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top