Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for elide (0.04 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/networking/core/gateway_simulation_test.go

    						VirtualHostMatched: "example.com:80",
    						RouteConfigMatched: "http.80",
    						StrictMatch:        true,
    					},
    				},
    			},
    		},
    		simulationTest{
    			// This should be the same as without, we elide the routes anyways since they always
    			// redirect
    			name: "httpsRedirect with routes",
    			config: createGateway("gateway", "", `port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		apiVersionsForDiscovery := []metav1.GroupVersionForDiscovery{}
    		for _, groupVersion := range apiGroupInfo.PrioritizedVersions {
    			// Check the config to make sure that we elide versions that don't have any resources
    			if len(apiGroupInfo.VersionedResourcesStorageMap[groupVersion.Version]) == 0 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top