Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for isStandard (0.51 sec)

  1. src/cmd/go/alldocs.go

    // the local cache or to compute the answers for a Go module proxy.
    //
    // By default, download writes nothing to standard output. It may print progress
    // messages and errors to standard error.
    //
    // The -json flag causes download to print a sequence of JSON objects
    // to standard output, describing each downloaded module (or failure),
    // corresponding to this Go struct:
    //
    //	type Module struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
    	}
    	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
    	fmt.Fprintf(h, "import %q\n", p.ImportPath)
    	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
    	if cfg.BuildTrimpath {
    		fmt.Fprintln(h, "trimpath")
    	}
    	if p.Internal.ForceLibrary {
    		fmt.Fprintf(h, "forcelibrary\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	}
    
    	meta[xhttp.AmzObjectTagging] = oi.UserTags
    	meta[xhttp.AmzTagDirective] = "REPLACE"
    
    	if sc == "" {
    		sc = oi.StorageClass
    	}
    	// drop non standard storage classes for tiering from replication
    	if sc != "" && (sc == storageclass.RRS || sc == storageclass.STANDARD) {
    		meta[xhttp.AmzStorageClass] = sc
    	}
    
    	meta[xhttp.MinIOSourceETag] = oi.ETag
    	meta[xhttp.MinIOSourceMTime] = oi.ModTime.UTC().Format(time.RFC3339Nano)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/net/http/server.go

    			return
    		}
    
    		c.rwc.SetReadDeadline(time.Time{})
    	}
    }
    
    func (w *response) sendExpectationFailed() {
    	// TODO(bradfitz): let ServeHTTP handlers handle
    	// requests with non-standard expectation[s]? Seems
    	// theoretical at best, and doesn't fit into the
    	// current ServeHTTP model anyway. We'd need to
    	// make the ResponseWriter an optional
    	// "ExpectReplier" interface or something.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    		// AWS S3 silently drops checksums on range requests.
    		hash.AddChecksumHeader(w, objInfo.decryptChecksums(opts.PartNumber, r.Header))
    	}
    
    	// Set standard object headers.
    	if err = setObjectHeaders(ctx, w, objInfo, rs, opts); err != nil {
    		writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
    		return
    	}
    
    	// Set Parts Count Header
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        # family.
        kube_master_image="${KUBE_GCE_MASTER_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_master_image}" ]]; then
          kube_master_image=$(gcloud compute images list --project="${MASTER_IMAGE_PROJECT}" --no-standard-images --filter="family:${MASTER_IMAGE_FAMILY}" --format 'value(name)')
        fi
    
        echo "Using image: ${kube_master_image} from project: ${MASTER_IMAGE_PROJECT} as master image" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	}
    }
    
    func getNodeStandardParityMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: storageClassSubsystem,
    		Name:      "standard_parity",
    		Help:      "standard storage class parity",
    		Type:      gaugeMetric,
    	}
    }
    
    func getNodeRRSParityMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: storageClassSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    # files.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ### Hardcoded constants
    METADATA_SERVER_IP="${METADATA_SERVER_IP:-169.254.169.254}"
    
    # Standard curl flags.
    CURL_FLAGS='--fail --silent --show-error --retry 5 --retry-delay 3 --connect-timeout 10 --retry-connrefused'
    
    function convert-manifest-params {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	// so it never reads the body.
    	expectTest(100, "100-continue", false, "401 Unauthorized"),
    	// Likewise without 100-continue:
    	expectTest(100, "", false, "401 Unauthorized"),
    
    	// Non-standard expectations are failures
    	expectTest(0, "a-pony", false, "417 Expectation Failed"),
    
    	// Expect-100 requested but no body (is apparently okay: Issue 7625)
    	expectTest(0, "100-continue", true, "200 OK"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top