Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for Malloc (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    // the quantization passes, quantized ops are represented as `func::CallOp` with
    // a callee's prefix of `quantized_`.
    void PopulateQuantizedResults(ModuleOp module_op,
                                  QuantizationResults& results) {
      module_op.walk([&results](func::CallOp call_op) {
        std::optional<QuantizationResult> result = GetQuantizationResult(call_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/reflect/export_test.go

    func MakeRO(v Value) Value {
    	v.flag |= flagStickyRO
    	return v
    }
    
    // IsRO reports whether v's read-only flag is set.
    func IsRO(v Value) bool {
    	return v.flag&flagStickyRO != 0
    }
    
    var CallGC = &callGC
    
    // FuncLayout calls funcLayout and returns a subset of the results for testing.
    //
    // Bitmaps like stack, gc, inReg, and outReg are expanded such that each bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/unicode/utf16/utf16_test.go

    func TestAllocationsDecode(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t)
    
    	for _, tt := range decodeTests {
    		allocs := testing.AllocsPerRun(10, func() {
    			out := Decode(tt.in)
    			if out == nil {
    				t.Errorf("Decode(%x) = nil", tt.in)
    			}
    		})
    		if allocs > 0 {
    			t.Errorf("Decode allocated %v times", allocs)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    	for _, tt := range decodeTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/testsupport.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cfile
    
    import (
    	"encoding/json"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/calloc"
    	"internal/coverage/cformat"
    	"internal/coverage/cmerge"
    	"internal/coverage/decodecounter"
    	"internal/coverage/decodemeta"
    	"internal/coverage/pods"
    	"internal/coverage/rtcov"
    	"internal/runtime/atomic"
    	"io"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-path-out.yaml

    Jackie Elliott <******@****.***> 1713578333 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/log/slog/attr_test.go

    		b = Bool("key", true).Value.Bool()
    		s = String("key", "foo").Value.String()
    		d = Duration("key", d).Value.Duration()
    		x = Any("key", p).Value.Any()
    	}))
    	if a != 0 {
    		t.Errorf("got %d allocs, want zero", a)
    	}
    	_ = u
    	_ = f
    	_ = b
    	_ = s
    	_ = x
    }
    
    func BenchmarkAttrString(b *testing.B) {
    	var (
    		is string
    		u  string
    		f  string
    		bn string
    		s  string
    		x  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-dry-run-allow-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 507 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.cc

      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<func::FuncDialect>();
      target.addLegalDialect<tensor::TensorDialect>();
      target.addLegalDialect<shape::ShapeDialect>();
      target.addLegalOp<func::CallOp>();
    
      // These ops are legalized in LegalizeTFCommunication after this and that pass
      // only operates on MHLO control flow ops.
      target.addLegalOp<TF::_XlaHostComputeMlirOp, TF::XlaSendToHostOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-deny-and-allow-out2.yaml

      rules:
        policies:
          ns[foo]-policy[httpbin-allow]-rule[0]:
            permissions:
            - andRules:
                rules:
                - any: true
            principals:
            - andIds:
                ids:
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          exact: spiffe://allow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 524 bytes
    - Viewed (0)
Back to top