Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for sftp (0.39 sec)

  1. platforms/software/resources-sftp/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Implementation for interacting with repositories over sftp"
    
    errorprone {
        disabledChecks.addAll(
            "UnusedMethod", // 2 occurrences
        )
    }
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":resources"))
    
        api(libs.jsch)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpConnectorFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.sftp;
    
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.authentication.Authentication;
    import org.gradle.internal.authentication.AllSchemesAuthentication;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    }
    // end::maven-ivy-repository-no-auth[]
    
    // tag::maven-ivy-repository-auth[]
    repositories {
        maven {
            url = uri("sftp://repo.mycompany.com:22/maven2")
            credentials {
                username = "user"
                password = "password"
            }
        }
    
        ivy {
            url = uri("sftp://repo.mycompany.com:22/repo")
            credentials {
                username = "user"
                password = "password"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpModule.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.sftp
    
    import org.gradle.test.fixtures.ivy.IvyFileModule
    import org.gradle.test.fixtures.ivy.RemoteIvyModule
    import org.gradle.test.fixtures.server.http.DelegatingIvyModule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/distributions-basics/build.gradle.kts

        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-core")))
    
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":resources-sftp"))
        pluginsRuntimeOnly(project(":resources-s3"))
        pluginsRuntimeOnly(project(":resources-gcs"))
        pluginsRuntimeOnly(project(":resources-http"))
        pluginsRuntimeOnly(project(":build-cache-http"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:05:59 UTC 2024
    - 945 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SftpDirectoryResource.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.sftp
    
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.resource.RemoteResource
    import org.gradle.util.internal.RelativePathUtil
    
    class SftpDirectoryResource implements RemoteResource {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/LockableSftpClient.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.sftp;
    
    import com.jcraft.jsch.ChannelSftp;
    import org.gradle.internal.concurrent.Stoppable;
    
    public interface LockableSftpClient extends Stoppable {
        SftpHost getHost();
        ChannelSftp getSftpClient();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 899 bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpHost.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.sftp;
    
    import org.gradle.api.credentials.PasswordCredentials;
    
    import java.net.URI;
    
    public class SftpHost {
        private final String hostname;
        private final int port;
        private final String username;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. docs/distributed/CONFIG.md

          - "https://server3-pool2:9000/mnt/disk{1...4}/"
          - "https://server4-pool2:9000/mnt/disk{1...4}/"
      # more args
    
    options:
      ftp: # settings for MinIO to act as an ftp server
        address: ":8021"
        passive-port-range: "30000-40000"
      sftp: # settings for MinIO to act as an sftp server
        address: ":8022"
        ssh-private-key: "/home/user/.ssh/id_rsa"
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/MavenSftpModule.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.sftp
    
    import org.gradle.test.fixtures.maven.DelegatingMavenModule
    import org.gradle.test.fixtures.maven.MavenFileModule
    import org.gradle.test.fixtures.maven.RemoteMavenModule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top