Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for elide (0.2 sec)

  1. pkg/config/validation/envoyfilter/envoyfilter.go

    			deprecatedTypes = append(deprecatedTypes, newTypes...)
    		}
    		return true
    	})
    	return deprecatedTypes, topError
    }
    
    // recurseMissingTypedConfig checks that configured filters do not rely on `name` and elide `typed_config`.
    // This is temporarily enabled in Envoy by the envoy.reloadable_features.no_extension_lookup_by_name flag, but in the future will be removed.
    func recurseMissingTypedConfig(message protoreflect.Message) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/runtime/stack_test.go

    	})
    }
    
    func testStackWrapperPanic(t *testing.T, cb func(), expect string) {
    	// Test that the stack trace from a panicking wrapper includes
    	// the wrapper, even though elide these when they don't panic.
    	t.Run("CallersFrames", func(t *testing.T) {
    		defer func() {
    			err := recover()
    			if err == nil {
    				t.Fatalf("expected panic")
    			}
    			pcs := make([]uintptr, 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    opt<bool> verbose(
        "v", llvm::cl::desc("Dump intermediate translations to output dir."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> elide_large_elements_attrs(
        "e", llvm::cl::desc("Elide large elements attrs."), llvm::cl::Optional,
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> debug_info(
        "debug-info", llvm::cl::desc("Inclide MLIR debug location info in output."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/crypto/tls/ticket.go

    		SignedCertificateTimestamps: s.scts,
    	})
    	b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/doc/pkg.go

    	if printed[value.Decl] {
    		return
    	}
    	// Print each spec only if there is at least one exported symbol in it.
    	// (See issue 11008.)
    	// TODO: Should we elide unexported symbols from a single spec?
    	// It's an unlikely scenario, probably not worth the trouble.
    	// TODO: Would be nice if go/doc did this for us.
    	specs := make([]ast.Spec, 0, len(value.Decl.Specs))
    	var typ ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/end2end/back2back_fake_quant.pbtxt

    # RUN: tf_tfl_translate --mlir-elide-elementsattrs-if-larger=10 --emit-builtin-tflite-ops \
    # RUN: --emit-select-tf-ops --tf-inference-type=DT_QUINT8 --tf-input-min-values=0.0 \
    # RUN: --tf-input-max-values=6.283185307179586 --tf-input-arrays=quant_dense_input --tf-input-shapes=1,1  \
    # RUN: --tf-output-arrays=Identity -o %t.tflite  %s 2>&1 | FileCheck %s
    # RUN: flatbuffer_to_string %t.tflite | FileCheck --check-prefix=RESULT1 %s
    
    node {
      name: "quant_dense_input"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 25.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // contains places with the same source. If a stack occurs multiple times
      // in places, only the outer-most occurrence is kept.
      function partitionPlaces(places) {
        // Find outer-most slot per stack (used later to elide duplicate stacks).
        const stackMap = new Map();  // Map from stack index to outer-most slot#
        for (const place of places) {
          const prevSlot = stackMap.get(place.Stack);
          if (prevSlot && prevSlot <= place.Pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/log/slog/handler.go

    		}
    		// a.Value is resolved before calling ReplaceAttr, so the user doesn't have to.
    		a = rep(gs, a)
    		// The ReplaceAttr function may return an unresolved Attr.
    		a.Value = a.Value.Resolve()
    	}
    	// Elide empty Attrs.
    	if a.isEmpty() {
    		return false
    	}
    	// Special case: Source.
    	if v := a.Value; v.Kind() == KindAny {
    		if src, ok := v.Any().(*Source); ok {
    			if s.h.json {
    				a.Value = src.group()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/net/textproto/reader.go

    	r     *Reader
    	state int
    }
    
    // Read satisfies reads by decoding dot-encoded data read from d.r.
    func (d *dotReader) Read(b []byte) (n int, err error) {
    	// Run data through a simple state machine to
    	// elide leading dots, rewrite trailing \r\n into \n,
    	// and detect ending .\r\n line.
    	const (
    		stateBeginLine = iota // beginning of line; initial state; must be zero
    		stateDot              // read . at beginning of line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/func.go

    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    	funcWrapper                // hide frame from users (elide in tracebacks, don't count as a frame for recover())
    	funcABIWrapper             // is an ABI wrapper (also set flagWrapper)
    	funcNeedctxt               // function uses context register (has closure variables)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top