Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 928 for uploading (0.15 sec)

  1. src/cmd/go/internal/telemetrycmd/telemetry.go

    (https://policies.google.com/privacy).
    
    To view the current telemetry mode, run "go telemetry".
    To disable telemetry uploading, but keep local data collection, run
    "go telemetry local".
    To enable both collection and uploading, run “go telemetry on”.
    To disable both collection and uploading, run "go telemetry off".
    
    See https://go.dev/doc/telemetry for more information on telemetry.
    `,
    	Run: runTelemetry,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishLoggingIntegTest.groovy

            output.contains("Publishing to repository 'maven'")
            output.contains("Uploading root-1.0.jar to ")
            output.contains("Uploading root-1.0.pom to ")
            output.contains("Uploading root-1.0.module to ")
            output.contains("Uploading maven-metadata.xml to ")
        }
    
        def "does not log uploads when installing to mavenLocal"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/mode.go

    //
    // The telemetry mode is a global value that controls both the local collection
    // and uploading of telemetry data. Possible mode values are:
    //   - "on":    both collection and uploading is enabled
    //   - "local": collection is enabled, but uploading is disabled
    //   - "off":   both collection and uploading are disabled
    //
    // When mode is "on", or "local", telemetry data is written to the local file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/internal/telemetry/telemetry.go

    //
    // The telemetry mode is a global value that controls both the local collection
    // and uploading of telemetry data. Possible mode values are:
    //   - "on":    both collection and uploading is enabled
    //   - "local": collection is enabled, but uploading is disabled
    //   - "off":   both collection and uploading are disabled
    //
    // When mode is "on", or "local", telemetry data is written to the local file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	cfg, client, err := getUploadConfigData(c)
    	if err != nil {
    		return err
    	}
    
    	klog.V(1).Infoln("[upload-config] Uploading the kubeadm ClusterConfiguration to a ConfigMap")
    	if err := uploadconfig.UploadConfiguration(cfg, client); err != nil {
    		return errors.Wrap(err, "error uploading the kubeadm ClusterConfiguration")
    	}
    	return nil
    }
    
    // runUploadKubeletConfig uploads the kubelet configuration to a ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.requirements.txt

    portpicker==1.6.0
    # For wheel verification, and uploading
    auditwheel ~= 5.4.0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 13:38:49 UTC 2023
    - 92 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/README.md

      if the user has opted in to telemetry uploading.
    - The [x/telemetry/cmd/gotelemetry](https://pkg.go.dev/pkg/golang.org/x/telemetry/cmd/gotelemetry)
      command is used for managing telemetry data and configuration.
    - The [x/telemetry/config](https://pkg.go.dev/pkg/golang.org/x/telemetry/config)
      package defines the subset of telemetry data that has been approved for
      uploading by the telemetry proposal process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	// relative names
    	uploaded map[string]bool // reports that have been uploaded
    }
    
    // find all the files that look like counter files or reports
    // that need to be uploaded. (There may be unexpected leftover files
    // and uploading is supposed to be idempotent.)
    func (u *uploader) findWork() work {
    	localdir, uploaddir := u.dir.LocalDir(), u.dir.UploadDir()
    	var ans work
    	fis, err := os.ReadDir(localdir)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/extensions/s3zip/README.md

    ## Overview
    
    MinIO implements an S3 extension to list, stat and download files inside a ZIP file stored in any bucket. A perfect use case scenario is when you have a lot of small files archived in multiple ZIP files. Uploading them is faster than uploading small files individually. Besides, your S3 applications will be able to access to the data with little performance overhead.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/patchnode/patchnode.go

    )
    
    // AnnotateCRISocket annotates the node with the given crisocket
    func AnnotateCRISocket(client clientset.Interface, nodeName string, criSocket string) error {
    
    	klog.V(1).Infof("[patchnode] Uploading the CRI Socket information %q to the Node API object %q as an annotation\n", criSocket, nodeName)
    
    	return apiclient.PatchNode(client, nodeName, func(n *v1.Node) {
    		annotateNodeWithCRISocket(n, criSocket)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top