Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 928 for uploading (0.38 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

            def publishTaskOutputLines = result.getGroupedOutput().task(':publishPubPublicationToMavenRepository').getOutput().split("\\R")
    
            publishTaskOutputLines.collect { it =~ ~/Uploading (\S*).*/ }.findAll().collect { it.group(1) } == [
                "snapshotPublish-${initialVersion}.jar",
                "snapshotPublish-${initialVersion}.pom",
                "snapshotPublish-${initialVersion}.module",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. cmd/bucket-handlers_test.go

    			objectName += "/"
    			contentBytes = []byte{}
    		}
    		// uploading the object.
    		_, err = obj.PutObject(GlobalContext, bucketName, objectName, mustGetPutObjReader(t, bytes.NewReader(contentBytes), int64(len(contentBytes)), "", sha256sum), ObjectOptions{})
    		// if object upload fails stop the test.
    		if err != nil {
    			t.Fatalf("Put Object %d:  Error uploading object: <ERROR> %v", i, err)
    		}
    
    		// object used for the test.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishSftpIntegrationTest.groovy

                .assertHasCause("Failed to publish publication 'ivy' to repository 'ivy'")
                .assertHasCause("Could not create resource '${ivySftpRepo.uri}'.")
        }
    
        def "publishing to a SFTP repo when file uploading fails"() {
            given:
            configureRepositoryCredentials("sftp", "sftp", "ivy")
            buildAndSettingsFilesForPublishing()
            def module = ivySftpRepo.module('org.group.name', 'publish', '2')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	}
    	todo := u.findWork()
    	ready, err := u.reports(&todo)
    	if err != nil {
    		u.logger.Printf("Error building reports: %v", err)
    		return fmt.Errorf("reports failed: %v", err)
    	}
    	u.logger.Printf("Uploading %d reports", len(ready))
    	for _, f := range ready {
    		u.uploadReport(f)
    	}
    	return nil
    }
    
    // debugLogFile arranges to write a log file in the given debug directory, if
    // it exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. ci/official/utilities/setup_macos.sh

    fi
    
    # "TFCI_MACOS_PYENV_INSTALL_ENABLE" controls whether to use Pyenv to install
    # the Python version set in "TFCI_PYTHON_VERSION" and use it as default.
    # We enable this in the nightly and release builds because before uploading the
    # wheels, we install them in a virtual environment and run some smoke tests on
    # it. TFCI Mac VMs only have one Python version installed so we need to install
    # the other versions manually.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. docs/sts/tls.md

    ## Caveat
    
    *Applications that use direct S3 API will work fine, however interactive users uploading content using (when POSTing to the presigned URL an app generates) a popup becomes visible on browser to provide client certs, you would have to manually cancel and continue. This may be annoying to use but there is no workaround for now.*
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    Travis CI doesn't not provide built-in options to post-process produced artifacts of the build e.g. host the JAR file or the HTML test reports.
    You will have to use external services (like S3) to https://docs.travis-ci.com/user/uploading-artifacts/[transfer the files].
    
    === Create the configuration file
    
    Travis CI requires you to check in a https://docs.travis-ci.com/user/customizing-the-build/[configuration file] with your source code named `.travis.yml`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

                CreateBucketRequest createBucketRequest = new CreateBucketRequest(bucketName, region)
                s3Client.amazonS3Client.createBucket(createBucketRequest)
    
                println "-- uploading"
                s3Client.put(new FileInputStream(file), file.length(), uri)
    
                println "------Getting object"
                s3Client.getResource(uri).close()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/copycerts/copycerts.go

    	secretData := map[string][]byte{}
    	for secretName, encryptedSecret := range secret.Data {
    		// In some cases the secret might have empty data if the secrets were not present on disk
    		// when uploading. This can specially happen with external insecure etcd (no certs)
    		if len(encryptedSecret) > 0 {
    			cert, err := cryptoutil.DecryptBytes(encryptedSecret, key)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/copycerts/copycerts_test.go

    		t.Fatalf("error creating PKI assets: %v", err)
    	}
    
    	cs := fakeclient.NewSimpleClientset()
    	if err := UploadCerts(cs, initConfiguration, secretKey); err != nil {
    		t.Fatalf("error uploading certs: %v", err)
    	}
    	rawSecretKey, err := hex.DecodeString(secretKey)
    	if err != nil {
    		t.Fatalf("error decoding key: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top