Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 605 for connectat (0.22 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

      /** Records a failure connecting to [failedRoute]. */
      @Synchronized fun failed(failedRoute: Route) {
        _failedRoutes.add(failedRoute)
      }
    
      /** Records success connecting to [route]. */
      @Synchronized fun connected(route: Route) {
        _failedRoutes.remove(route)
      }
    
      /** Returns true if [route] has failed recently and should be avoided. */
      @Synchronized fun shouldPostpone(route: Route): Boolean = route in _failedRoutes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/net/http/readrequest_test.go

    			"3\r\nbar\r\n" +
    			"0\r\n" +
    			"\r\n",
    		nil,
    		noBodyStr,
    		noTrailer,
    		`bad Content-Length "notdigits"`,
    	},
    
    	// CONNECT request with domain name:
    	{
    		"CONNECT www.google.com:443 HTTP/1.1\r\n\r\n",
    
    		&Request{
    			Method: "CONNECT",
    			URL: &url.URL{
    				Host: "www.google.com:443",
    			},
    			Proto:         "HTTP/1.1",
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                wagon.connect(
                        new Repository(repository.getId(), repository.getUrl()),
                        authenticationInfo(repository),
                        proxyInfo(repository));
    
            } else if (repository.getAuthentication() != null) {
                wagon.connect(new Repository(repository.getId(), repository.getUrl()), authenticationInfo(repository));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

    import okio.BufferedSource
    import okio.buffer
    import okio.sink
    import okio.source
    
    /**
     * A single attempt to connect to a remote server, including these steps:
     *
     *  * [TCP handshake][connectSocket]
     *  * Optional [CONNECT tunnels][connectTunnel]. When using an HTTP proxy to reach an HTTPS server
     *    we must send a `CONNECT` request, and handle authorization challenges from the proxy.
     *  * Optional [TLS handshake][connectTls].
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/content/script.js

              });
              list.slideDown("slow");
            }
          },
          timeout: 10000,
          error: function() {
            finishAnimation();
            $("<p>Unable to retrieve the issue information. You may not be connected to the Internet, or there may have been an error.</p>").insertAfter(insertAfter).css({fontWeight: "bold", color: "red"});
          }
        });
      }
    
      injectIssues(
        "https://services.gradle.org/fixed-issues/@baseVersion@",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ConnectorFactoryTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.aws.s3
    
    import org.gradle.api.credentials.AwsCredentials
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification
    import org.gradle.internal.authentication.DefaultAwsImAuthentication
    import org.gradle.internal.authentication.AllSchemesAuthentication
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/UserHomeDirCrossVersionSpec.groovy

        }
    }
    """
            ByteArrayOutputStream baos = new ByteArrayOutputStream()
    
            when:
            toolingApi.withUserHome(userHomeDir)
            toolingApi.withConnector { connector ->
                connector.useGradleUserHomeDir(userHomeDir)
            }
            toolingApi.withConnection { connection ->
                BuildLauncher build = connection.newBuild()
                build.forTasks("gradleBuild");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultTransport.java

    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Optional;
    
    import org.apache.maven.api.services.Transport;
    import org.eclipse.aether.spi.connector.transport.GetTask;
    import org.eclipse.aether.spi.connector.transport.PutTask;
    import org.eclipse.aether.spi.connector.transport.Transporter;
    
    import static java.util.Objects.requireNonNull;
    
    public class DefaultTransport implements Transport {
        private final URI baseURI;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServerConnector.java

    package org.gradle.launcher.daemon.server;
    
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.remote.Address;
    
    /**
     * Opens a server connection for clients to connect to communicate with a daemon.
     * <p>
     * A server connector should only be used by one daemon, and has a single use lifecycle.
     * Implementations must be threadsafe so that start/stop can be called from different threads.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/README.adoc

    This sample shows how to structure a software product that consists of multiple components as a set of connected Gradle builds.
    As such, it shows how Gradle is used to model a project's architecture and reflect that in the physical structure of the files that make up the software.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top