Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for sftp (0.04 sec)

  1. cmd/sftp-server_test.go

    	defer cancel()
    
    	// we need to do this so that the user has a policy before authentication.
    	// ldap user accounts without policies are denied access in sftp.
    	policy := "mypolicy"
    	policyBytes := []byte(`{
     "Version": "2012-10-17",
     "Statement": [
      {
       "Effect": "Allow",
       "Action": [
        "s3:PutObject",
        "s3:GetObject",
        "s3:ListBucket"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    # MinIO FTP/SFTP Server
    
    MinIO natively supports FTP/SFTP protocol, this allows any ftp/sftp client to upload and download files.
    
    Currently supported `FTP/SFTP` operations are as follows:
    
    | ftp-client commands | supported |
    |:-------------------:|:----------|
    | get                 | yes       |
    | put                 | yes       |
    | ls                  | yes       |
    | mkdir               | yes       |
    | rmdir               | yes       |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/maven/MavenSftpRepoResolveIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.resource.sftp.maven
    
    import org.gradle.integtests.resolve.resource.sftp.AbstractSftpDependencyResolutionTest
    
    class MavenSftpRepoResolveIntegrationTest extends AbstractSftpDependencyResolutionTest {
    
        void "can resolve dependencies from a SFTP Maven repository"() {
            given:
            def mavenSftpRepo = getMavenSftpRepo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishSftpIntegrationTest.groovy

                }
            """
        }
    
        def "can publish to a SFTP repository with layout #layout"() {
            given:
            def ivySftpRepo = getIvySftpRepo(m2Compatible)
            def module = ivySftpRepo.module("org.group.name", "publish", "2")
    
            settingsFile << 'rootProject.name = "publish"'
            configureRepositoryCredentials("sftp", "sftp", "ivy")
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSftpIntegrationTest.groovy

     */
    
    package org.gradle.api.publish.maven
    
    import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
    import org.gradle.test.fixtures.server.sftp.MavenSftpRepository
    import org.gradle.test.fixtures.server.sftp.SFTPServer
    import org.gradle.test.fixtures.server.sftp.SftpArtifact
    import org.junit.Rule
    
    class MavenPublishSftpIntegrationTest extends AbstractMavenPublishIntegTest {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/AbstractSftpDependencyResolutionTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.resource.sftp
    
    import org.gradle.integtests.fixtures.AbstractDependencyResolutionTest
    import org.gradle.test.fixtures.server.sftp.IvySftpRepository
    import org.gradle.test.fixtures.server.sftp.MavenSftpRepository
    import org.gradle.test.fixtures.server.sftp.SFTPServer
    import org.junit.Rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. cmd/testdata/config/1.yaml

            - 'https://server3-pool2:9000/mnt/disk{1...4}/'
            - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    
    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'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 881 bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoResolveIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.resource.sftp.ivy
    
    import org.gradle.integtests.resolve.ivy.AbstractIvyRemoteRepoResolveIntegrationTest
    import org.gradle.test.fixtures.server.RepositoryServer
    import org.gradle.test.fixtures.server.sftp.SFTPServer
    import org.junit.Rule
    
    class IvySftpRepoResolveIntegrationTest extends AbstractIvyRemoteRepoResolveIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

        void "resolve missing dependencies from a SFTP Ivy repository"() {
            given:
            buildFile << """
                repositories {
                    ivy {
                        url "${ivySftpRepo.uri}"
                        credentials {
                            username 'sftp'
                            password 'sftp'
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. cmd/testdata/config/2.yaml

            - 'https://server3-pool2:9000/mnt/disk{1...4}/'
            - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    
    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'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 869 bytes
    - Viewed (0)
Back to top