Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 554 for opload (0.19 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	UploadURL    string    // if set, overrides the telemetry upload endpoint
    	LogWriter    io.Writer // if set, used for detailed logging of the upload process
    	Env          []string  // if set, appended to the config download environment
    	StartTime    time.Time // if set, overrides the upload start time
    }
    
    // Run generates and uploads reports, as allowed by the mode file.
    func Run(config RunConfig) error {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/templates/home.html

            var url = window.location.protocol + "//" + window.location.host + "/homej/";
    
            var ajax = new XMLHttpRequest();
            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status == 200) { // request succeeded
                    var hi = JSON.parse(this.responseText);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/load.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 514 bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libexport/load.cc

    #include "tensorflow/core/util/tensor_bundle/tensor_bundle.h"
    
    namespace tensorflow {
    namespace libexport {
    
    using protobuf::RepeatedPtrField;
    
    tensorflow::StatusOr<TFPackage> TFPackage::Load(const std::string& path) {
      // Load the proto
      TFPackage tf_package;
      const string saved_model_pb_path = io::JoinPath(path, kSavedModelFilenamePb);
      const string saved_model_pbtxt_path =
          io::JoinPath(path, kSavedModelFilenamePbTxt);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 15:16:07 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libexport/load.h

      //
      // GraphDef nodes are stored as a repeating list of nodes.  At module load
      // time, a module may have constants that need to be restored.  To restore
      // these constants, they are looked up in the GraphDef's nodes by their name.
      // Since we may need to load many constants, we create a hash map of these
      // names to their corresponding nodes at load time in order to look them up
      // in constant time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. 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)
  7. .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)
  8. 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)
  9. 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)
  10. 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)
Back to top