Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 479 for opload (0.11 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploaderTest.groovy

        def "delegates upload to delegate uploader and logs progress"() {
            setup:
            expectPutBuildOperation(1072)
    
            when:
            uploader.upload(resource, location)
    
            then:
            1 * resource.open() >> inputStream
            1 * resource.contentLength >> 1072
            1 * delegate.upload(_, location) >> { resource, destination ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

              #     of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
          - name: "Upload artifact"
            uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
            with:
              name: SARIF file
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/uploadcerts.go

    )
    
    // NewUploadCertsPhase returns the uploadCerts phase
    func NewUploadCertsPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:  "upload-certs",
    		Short: fmt.Sprintf("Upload certificates to %s", kubeadmconstants.KubeadmCertsSecret),
    		Long:  fmt.Sprintf("Upload control plane certificates to the %s Secret", kubeadmconstants.KubeadmCertsSecret),
    		Run:   runUploadCerts,
    		InheritFlags: []string{
    			options.CfgPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 04:00:49 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            server.expect(server.post(backingRepo.getName() + "/git-upload-pack", new ErroringAction<HttpExchange>() {
                @Override
                protected void doExecute(HttpExchange httpExchange) throws Exception {
                    httpExchange.getResponseHeaders().add("content-type", "application/x-git-upload-pack-result");
                    httpExchange.sendResponseHeaders(200, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/assets/templates/signals.html

            let url = window.location.protocol + "//" + window.location.host + "/signalj/SIGUSR1";
    
            let ajax = new XMLHttpRequest();
            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("PUT", url, true);
            ajax.send();
    
            function onload() {
                console.log(url + " -> " + ajax.status)
            }
    
            function onerror(e) {
                console.error(e);
            }
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 687 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	mode, asof := u.dir.Mode()
    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    		uploadOK = false
    	}
    	// If the mode is recorded with an asof date, don't upload if the report
    	// includes any data on or before the asof date.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/DefaultExternalResourceConnector.java

            }
    
            @Override
            public void upload(URI destination) {
                record(uploads, destination);
                super.upload(destination);
            }
    
            @Override
            public synchronized void reset() {
                super.reset();
                resources.clear();
                metadata.clear();
                lists.clear();
                uploads.clear();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/12-telemetry.yml

    name: Go Telemetry Proposals
    description: Changes to the telemetry upload configuration
    title: "x/telemetry/config: proposal title"
    labels: ["Telemetry-Proposal"]
    projects: ["golang/29"]
    body:
    - type: textarea
      attributes:
        label: Summary
        description: >
          What change are you proposing to the upload configuration, and why?
          For new upload configuration, which new counters will be collected, what
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceUploader.java

                ResourceOperation uploadOperation = createResourceOperation(context, ResourceOperation.Type.upload);
                uploadOperation.setContentLength(resource.getContentLength());
                try {
                    delegate.upload(new ProgressLoggingReadableContent(resource, uploadOperation), destination);
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/assets/templates/proc.html

            let url = window.location.protocol + "//" + window.location.host + "/procj/";
    
            let ajax = new XMLHttpRequest();
            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status === 200) { // request succeeded
                    let pi = JSON.parse(this.responseText);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top