Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 285 for sftp (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

        }
    }
    // end::maven-ivy-repository-no-auth[]
    
    // tag::maven-ivy-repository-auth[]
    repositories {
        maven {
            url "sftp://repo.mycompany.com:22/maven2"
            credentials {
                username "user"
                password "password"
            }
        }
    
        ivy {
            url "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.4K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpResourcesServices.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.internal.resource.connector.ResourceConnectorFactory;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/ivy/build.gradle.kts

        testImplementation(testFixtures(project(":dependency-management")))
    
        integTestImplementation(libs.slf4jApi)
    
        integTestRuntimeOnly(project(":resources-s3"))
        integTestRuntimeOnly(project(":resources-sftp"))
        integTestRuntimeOnly(project(":api-metadata"))
    
        testFixturesApi(project(":base-services")) {
            because("Test fixtures export the Action class")
        }
        testFixturesApi(project(":core-api")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SftpArtifact.java

     * 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.RemoteArtifact;
    
    public class SftpArtifact extends SftpResource implements RemoteArtifact {
    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