Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for Transfer (0.18 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

         */
        public static final int TRANSFER_COMPLETED = 2;
    
        /**
         * A transfer is in progress.
         */
        public static final int TRANSFER_PROGRESS = 3;
    
        /**
         * An error occurred during transfer
         */
        public static final int TRANSFER_ERROR = 4;
    
        /**
         * Indicates GET transfer  (from the repository)
         */
        public static final int REQUEST_GET = 5;
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    - Secure File Transfer Protocol (SFTP) – Defined by the Internet Engineering Task Force (IETF) as an
      extended version of SSH 2.0, allowing file transfer over SSH and for use with Transport Layer
      Security (TLS) and VPN applications.
    
    - File Transfer Protocol over SSL/TLS (FTPS) – Encrypted FTP communication via TLS certificates.
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 15 14:34:02 GMT 2023
    - 5.5K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

    import org.eclipse.aether.spi.connector.MetadataUpload;
    import org.eclipse.aether.spi.connector.RepositoryConnector;
    import org.eclipse.aether.transfer.ArtifactNotFoundException;
    import org.eclipse.aether.transfer.ArtifactTransferException;
    import org.eclipse.aether.transfer.MetadataNotFoundException;
    import org.eclipse.aether.transfer.MetadataTransferException;
    
    /**
     */
    public class TestRepositoryConnector implements RepositoryConnector {
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

        }
    
        /**
         * Check that transfer listeners are properly removed after getArtifact and putArtifact
         */
        @Test
        void testWagonTransferListenerRemovedAfterGetArtifactAndPutArtifact() throws Exception {
            Artifact artifact = createTestArtifact("target/test-data/transfer-listener", "jar");
            ArtifactRepository repo = createStringRepo();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/HeadersTest.kt

      }
    
      @Test fun headersEquals() {
        val headers1 =
          Headers.Builder()
            .add("Connection", "close")
            .add("Transfer-Encoding", "chunked")
            .build()
        val headers2 =
          Headers.Builder()
            .add("Connection", "close")
            .add("Transfer-Encoding", "chunked")
            .build()
        assertThat(headers2).isEqualTo(headers1)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/FileBackedOutputStream.java

            // this is insurance.
            temp.deleteOnExit();
          }
          try {
            FileOutputStream transfer = new FileOutputStream(temp);
            transfer.write(memory.getBuffer(), 0, memory.getCount());
            transfer.flush();
            // We've successfully transferred the data; switch to writing to file
            out = transfer;
          } catch (IOException e) {
            temp.delete();
            throw e;
          }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt

        private const val CONNECTION = "connection"
        private const val HOST = "host"
        private const val KEEP_ALIVE = "keep-alive"
        private const val PROXY_CONNECTION = "proxy-connection"
        private const val TRANSFER_ENCODING = "transfer-encoding"
        private const val TE = "te"
        private const val ENCODING = "encoding"
        private const val UPGRADE = "upgrade"
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/BridgeInterceptor.kt

          val contentLength = body.contentLength()
          if (contentLength != -1L) {
            requestBuilder.header("Content-Length", contentLength.toString())
            requestBuilder.removeHeader("Transfer-Encoding")
          } else {
            requestBuilder.header("Transfer-Encoding", "chunked")
            requestBuilder.removeHeader("Content-Length")
          }
        }
    
        if (userRequest.header("Host") == null) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.2K bytes
    - Viewed (2)
  9. .github/workflows/mint/nginx.conf

                proxy_connect_timeout 300;
                # Default is HTTP/1, keepalive is only enabled in HTTP/1.1
                proxy_http_version 1.1;
                proxy_set_header Connection "";
                chunked_transfer_encoding off;
    
                proxy_pass http://minio;
            }
        }
    
        server {
            listen       9001;
            listen  [::]:9001;
            server_name  localhost;
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Mar 31 21:38:10 GMT 2023
    - 3K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/google/cadvisor/third_party/containerd/NOTICE

    This product includes software developed at Docker, Inc. (https://www.docker.com).
    
    The following is courtesy of our legal counsel:
    
    
    Use and transfer of Docker may be subject to certain restrictions by the
    United States and other governments.
    It is your responsibility to ensure that your use and/or transfer does not
    violate applicable laws.
    
    For more information, please see https://www.bis.doc.gov
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Aug 03 16:47:06 GMT 2022
    - 519 bytes
    - Viewed (0)
Back to top