Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for reveal (0.32 sec)

  1. src/internal/trace/traceviewer/http.go

      goroutine-oriented view showing the tasks and regions on the
      timeline.
    
      Such information may help uncover which steps in a region are
      unexpectedly slow, or reveal relationships between the data values
      logged in a request and its running time.
    </p>
    <ul>
    <li><a href="/usertasks">User-defined tasks</a></li>
    <li><a href="/userregions">User-defined regions</a></li>
    </ul>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. internal/etag/etag.go

    //	SSE-KMS: ETag != MD5
    //
    // # Encrypted ETags
    //
    // An S3 implementation has to remember the content MD5 of objects
    // in case of SSE-S3. However, storing the ETag of an encrypted
    // object in plaintext may reveal some information about the object.
    // For example, two objects with the same ETag are identical with
    // a very high probability.
    //
    // Therefore, an S3 implementation may encrypt an ETag before storing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Buckets:        []float64{0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.95, 0.99, 1},
    			ConstLabels:    map[string]string{phase: "executing"},
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		priorityLevel,
    	)
    	// PriorityLevelConcurrencyGaugeVec creates gauges of concurrency broken down by phase, priority level
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    			case 'B':
    				src = 1
    			case 'W':
    				src = 2
    			case 'L':
    				src = 4
    			case 'D', 'Q':
    				src = 8
    			}
    		case "ppc64", "ppc64le":
    			// Strip standard suffixes to reveal size letter.
    			m := ppc64Suff.FindStringSubmatch(op)
    			if m != nil {
    				switch m[1][0] {
    				case 'B':
    					src = 1
    				case 'H':
    					src = 2
    				case 'W':
    					src = 4
    				case 'D':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    		// resolve some conflicts by locking in upgrades. Do that now.
    		//
    		// We don't do these upgrades until we're done downgrading because the
    		// downgrade process might reveal or remove conflicts (by changing which
    		// requirement edges are pruned out).
    		var upgradedFrom []module.Version // for logging only
    		for p, v := range selectedRoot {
    			if _, ok := mustSelectVersion[p]; !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/strings/replace_test.go

    	benchmarkSingleString(b, Repeat("b", 25), Repeat("a", 10000))
    }
    
    func BenchmarkSingleLongSuffixFail(b *testing.B) {
    	benchmarkSingleString(b, "b"+Repeat("a", 500), Repeat("a", 1002))
    }
    
    func BenchmarkSingleMatch(b *testing.B) {
    	benchmarkSingleString(b, "abcdef", Repeat("abcdefghijklmno", 1000))
    }
    
    func BenchmarkByteByteNoMatch(b *testing.B) {
    	str := Repeat("A", 100) + Repeat("B", 100)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  7. istioctl/pkg/injector/injector-list.go

    	}
    	for _, pod := range pods.Items {
    		retval[resource.Namespace(pod.GetNamespace())] = append(retval[resource.Namespace(pod.GetNamespace())], pod)
    	}
    	return retval, nil
    }
    
    // getInjectedImages() returns a map of revision->dockerimage
    func getInjectedImages(ctx context.Context, client kube.CLIClient) (map[string]string, error) {
    	retval := map[string]string{}
    
    	// All configs in all namespaces that are Istio revisioned
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/archive/tar/writer_test.go

    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    						int64(1e10 - blockSize),
    						strings.Repeat("\x00", blockSize-100) + strings.Repeat("0123456789", 10),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/certs.go

    	be based on the existing file/certificates, there is no need to resupply them.
    
    	Renewal by default tries to use the certificate authority in the local PKI managed by kubeadm; as alternative
    	it is possible to use K8s certificate API for certificate renewal, or as a last option, to generate a CSR request.
    
    	After renewal, in order to make changes effective, is required to restart control-plane components and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"bbc.co.uk",
    		"10.0.0.1", // DNS labels can start with numbers and there is no requirement for letters.
    		"hyphens-are-good.k8s.io",
    		strings.Repeat("a", 63) + ".k8s.io",
    		strings.Repeat("a", 63) + "." + strings.Repeat("b", 63) + "." + strings.Repeat("c", 63) + "." + strings.Repeat("d", 54) + ".k8s.io",
    	}
    	for _, val := range goodValues {
    		if err := IsFullyQualifiedDomainName(field.NewPath(""), val).ToAggregate(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top