Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for elide (0.09 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/arena.go

    // addresses. The reason for this is to take advantage of a GC optimization wherein
    // the GC will stop scanning an object when there are no more pointers in it, which
    // also allows us to elide clearing the heap bitmap for pointer-free Go values
    // allocated into arenas.
    //
    // Note that arenas are not safe to use concurrently.
    //
    // In summary, there are 2 resources: arenas, and arena chunks. They exist in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    	return ret
    }
    
    // string6 formats ip in IPv6 textual representation. It follows the
    // guidelines in section 4 of RFC 5952
    // (https://tools.ietf.org/html/rfc5952#section-4): no unnecessary
    // zeros, use :: to elide the longest run of zeros, and don't use ::
    // to compact a single zero field.
    func (ip Addr) string6() string {
    	// Use a zone with a "plausibly long" name, so that most zone-ful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top