Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 554 for opload (0.1 sec)

  1. 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)
  2. 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)
  3. .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)
  4. 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)
  5. 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)
  6. src/main/resources/fess_message_en.properties

    errors.failed_to_upload_stemmeroverride_file=Failed to upload the Stemmer Override file.
    errors.failed_to_download_kuromoji_file=Failed to download the Kuromoji file.
    errors.failed_to_upload_kuromoji_file=Failed to upload the Kuromoji file.
    errors.failed_to_download_protwords_file=Failed to download the Protwords file.
    errors.failed_to_upload_protwords_file=Failed to upload the Protwords file.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_message.properties

    errors.failed_to_upload_stemmeroverride_file=Failed to upload the Stemmer Override file.
    errors.failed_to_download_kuromoji_file=Failed to download the Kuromoji file.
    errors.failed_to_upload_kuromoji_file=Failed to upload the Kuromoji file.
    errors.failed_to_download_protwords_file=Failed to download the Protwords file.
    errors.failed_to_upload_protwords_file=Failed to upload the Protwords file.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/badword/admin_badword_upload.jsp

                            <div class="card-footer">
                                <button type="submit" class="btn btn-success" name="upload"
                                        value="<la:message key="labels.bad_word_button_upload" />">
                                    <em class="fa fa-upload">
                                    <la:message key="labels.bad_word_button_upload"/>
                                </button>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  9. cmd/object-api-datatypes.go

    func (lm ListMultipartsInfo) Lookup(uploadID string) bool {
    	for _, upload := range lm.Uploads {
    		if upload.UploadID == uploadID {
    			return true
    		}
    	}
    	return false
    }
    
    // ListMultipartsInfo - represents bucket resources for incomplete multipart uploads.
    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            final DiskFileItemFactory fileItemFactory = createDiskFileItemFactory();
            final ServletFileUpload upload = newServletFileUpload(fileItemFactory);
            upload.setHeaderEncoding(request.getCharacterEncoding());
            upload.setSizeMax(getSizeMax());
            return upload;
        }
    
        protected ServletFileUpload newServletFileUpload(final DiskFileItemFactory fileItemFactory) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top