Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for hashed (0.77 sec)

  1. src/net/http/transport_test.go

    	{"", "gzip", false},
    	// Requests with other accept-encoding should pass through unmodified
    	{"foo", "foo", false},
    	// Requests with accept-encoding == gzip should be passed through
    	{"gzip", "gzip", true},
    }
    
    // Test that the modification made to the Request by the RoundTripper is cleaned up
    func TestRoundTripGzip(t *testing.T) { run(t, testRoundTripGzip) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            operand_type.cloneWith({static_cast<int64_t>(1)}, i64_type);
    
        SmallVector<Value> start_indices(rank);
        for (auto [i, start_index] : llvm::enumerate(op.getStartIndices())) {
          // Start indices should be casted from tensor<i64> to tensor<1xi64>.
          auto cast = rewriter.create<TFL::BitcastOp>(
              op->getLoc(), single_element_type, start_index);
          int64_t upper_limit_idx = operand_shape[i] - slice_sizes[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    		t.Errorf("constructed arrays %v and %v should be equal", i1, i2)
    	}
    
    	// Test hash
    	m := MakeMap(MapOf(at, TypeOf(int(0))))
    	m.SetMapIndex(v1, ValueOf(1))
    	if i1, i2 := v1.Interface(), v2.Interface(); !m.MapIndex(v2).IsValid() {
    		t.Errorf("constructed arrays %v and %v have different hashes", i1, i2)
    	}
    }
    
    func TestArrayOfDirectIface(t *testing.T) {
    	{
    		type T [1]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    	// verify status of attached volume by directly reading from API server later on.This is necessarily
    	// to ensure any race conditions because of cached state in the informer.
    	if volumeToMount.PluginIsAttachable {
    		cachedAttachedVolumes, _ := og.volumePluginMgr.Host.GetAttachedVolumesFromNodeStatus()
    		if cachedAttachedVolumes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    	}
    	for k, v := range m.VariableLabels {
    		metric.VariableLabels[k] = v
    	}
    	for k, v := range m.Histogram {
    		metric.Histogram[k] = v
    	}
    	return metric
    }
    
    // Get - returns cached value always upton the configured TTL,
    // once the TTL expires "read()" registered function is called
    // to return the new values and updated.
    func (g *MetricsGroupV2) Get() (metrics []MetricV2) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    time, but never ONE with such a neck as that!  No, no!  You're a
    serpent; and there's no use denying it.  I suppose you'll be
    telling me next that you never tasted an egg!'
    
      `I HAVE tasted eggs, certainly,' said Alice, who was a very
    truthful child; `but little girls eat eggs quite as much as
    serpents do, you know.'
    
      `I don't believe it,' said the Pigeon; `but if they do, why
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	if !etag.ContentMD5Requested(r.Header) && (crypto.S3KMS.IsRequested(r.Header) || crypto.SSEC.IsRequested(r.Header) || !globalServerCtxt.StrictS3Compat) {
    		forceMD5 = mustGetUUIDBytes()
    	}
    	hashReader, err := hash.NewReaderWithOpts(ctx, reader, hash.Options{
    		Size:       size,
    		MD5Hex:     md5hex,
    		SHA256Hex:  sha256hex,
    		ActualSize: actualSize,
    		DisableMD5: false,
    		ForceMD5:   forceMD5,
    	})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	containerGC kubecontainer.GC
    
    	// Manager for image garbage collection.
    	imageManager images.ImageGCManager
    
    	// Manager for container logs.
    	containerLogManager logs.ContainerLogManager
    
    	// Cached MachineInfo returned by cadvisor.
    	machineInfoLock sync.RWMutex
    	machineInfo     *cadvisorapi.MachineInfo
    
    	// Handles certificate rotations.
    	serverCertificateManager certificate.Manager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	return err
    }
    
    func (e *importError) Error() string {
    	return e.err.Error()
    }
    
    func (e *importError) Unwrap() error {
    	// Don't return e.err directly, since we're only wrapping an error if %w
    	// was passed to ImportErrorf.
    	return errors.Unwrap(e.err)
    }
    
    func (e *importError) ImportPath() string {
    	return e.importPath
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/reflect/value.go

    // case of preemption.
    //
    // After fn returns, call copies stackArgsSize-stackRetOffset result bytes
    // back into stackArgs+stackRetOffset before returning, for any return
    // values passed on the stack. Register-based return values will be found
    // in the same regArgs structure.
    //
    // regArgs must also be prepared with an appropriate ReturnIsPtr bitmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top