Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for toGetter (0.35 sec)

  1. src/net/http/server.go

    	// canWriteContinue is an atomic boolean that says whether or
    	// not a 100 Continue header can be written to the
    	// connection.
    	// writeContinueMu must be held while writing the header.
    	// These two fields together synchronize the body reader (the
    	// expectContinueReader, which wants to write 100 Continue)
    	// against the main writer.
    	writeContinueMu  sync.Mutex
    	canWriteContinue atomic.Bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

               RemoveReshapeBeforeFullyConnected, ConvertTFLBroadcastToMulOp>(ctx);
      (void)applyPatternsAndFoldGreedily(func, std::move(phase_0_patterns));
    
      // Potentially the binary ops might be fused together, like hard_swish, thus
      // we explore these potentially first and then fuse the binary ops with the
      // following ops in a second pattern match.
      TFL::populateWithGenerated(patterns);
      patterns
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	HistogramBucketLabel string            `json:"HistogramBucketLabel"`
    	Histogram            map[string]uint64 `json:"Histogram"`
    }
    
    // MetricsGroupV2 are a group of metrics that are initialized together.
    type MetricsGroupV2 struct {
    	metricsCache     *cachevalue.Cache[[]MetricV2] `msg:"-"`
    	cacheInterval    time.Duration
    	metricsGroupOpts MetricsGroupOpts
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// object file for the package, and then the Go linker passes them
    	// along to the host linker. At this point in the code, cgoLDFLAGS
    	// consists of the original $CGO_LDFLAGS (unchecked) and all the
    	// flags put together from source code (checked).
    	cgoenv := b.cCompilerEnv()
    	var ldflagsOption []string
    	if len(cgoLDFLAGS) > 0 {
    		flags := make([]string, len(cgoLDFLAGS))
    		for i, f := range cgoLDFLAGS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // MOVDnop doesn't emit instruction, only for ensuring the type.
    (MOVDreg x) && x.Uses == 1 => (MOVDnop x)
    
    // TODO: we should be able to get rid of MOVDnop all together.
    // But for now, this is enough to get rid of lots of them.
    (MOVDnop (MOVDconst [c])) => (MOVDconst [c])
    
    // fold constant into arithmetic ops
    (ADD  x (MOVDconst <t> [c])) && !t.IsPtr() => (ADDconst [c] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		// dependency, and at the moment we don't try to instrument it
    		// for coverage. There isn't any technical reason why
    		// *_test.go files couldn't be instrumented, but it probably
    		// doesn't make much sense to lump together coverage metrics
    		// (ex: percent stmts covered) of *_test.go files with
    		// non-test Go code.
    		if len(p.GoFiles)+len(p.CgoFiles) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
    
      let summary = "UnsortedSegmentSum operator";
    
      let description = [{
        From a tensor segmentation, computes the `output` resulting from
        summing together elements mapped to the same segment_id. I.e. `output[i]` is
        equal to the tensor sum of all elements from the input tensor mapped to
        segment_id `i`. If no tensors are mapped to a particular included
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                           result.attributes);
      }
      if (node.IsNextIteration()) {
        // NextIteration is a bit special, we create a pair of operations that are
        // linked together through a token returned by the source.
        // We make use of a separate builder to insert the source at the top of
        // the block.
        mlir::OpBuilder builder_at_begin(builder_.getBlock(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		<-conn.closec
    	}
    }
    
    // Tests that we can use CloseNotifier in one request, and later call Hijack
    // on a second request on the same connection.
    //
    // It also tests that the connReader stitches together its background
    // 1-byte read for CloseNotifier when CloseNotifier doesn't fire with
    // the rest of the second HTTP later.
    //
    // Issue 9763.
    // HTTP/1-only test. (http2 doesn't have Hijack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	if got, want := iterateToString(iter), `[1: one, 2: two, 3: three]`; got != want {
    		t.Errorf("iterator returned %s (after sorting), want %s", got, want)
    	}
    
    	// Check that Reset, Next, and SetKey/SetValue play nicely together.
    	m3 := map[uint64]uint64{
    		1 << 0: 1 << 1,
    		1 << 1: 1 << 2,
    		1 << 2: 1 << 3,
    	}
    	kv := New(TypeOf(uint64(0))).Elem()
    	for i := 0; i < 5; i++ {
    		var seenk, seenv uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top