Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for elide (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/traceback_test.go

    					t.Errorf("traceback ended early")
    					break
    				}
    				fr := tb.frames[0]
    				if i == runtime.TracebackInnerFrames && elided > 0 {
    					// This should be an "elided" frame.
    					if fr.elided != elided {
    						t.Errorf("want %d frames elided", elided)
    						break
    					}
    					i += fr.elided
    				} else {
    					want := fmt.Sprintf("runtime_test.tte%d", (i+1)%5)
    					if i == 0 {
    						want = "runtime/debug.Stack"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/expr3.go

    	var value int
    	_ = M1{true: 1, false: 0}
    	_ = M2{nil: 0, &value: 1}
    
    	// composite literal element types may be elided
    	type T [2]int
    	_ = map[int]T{0: T{3, 4}, 1: {5, 6}}
    
    	// recursively so
    	_ = map[int][]T{0: {}, 1: {{}, T{1, 2}}}
    
    	// composite literal key types may be elided
    	_ = map[T]int{T{3, 4}: 0, {5, 6}: 1}
    
    	// recursively so
    	_ = map[[2]T]int{{}: 0, {{}}: 1, [2]T{{}}: 2, {T{1, 2}}: 3}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.proto

      // Name represents the name for the workload.
      // For Kubernetes, this is the pod name.
      // This is just for debugging and may be elided as an optimization.
      string name = 1;
      // Namespace represents the namespace for the workload.
      // This is just for debugging and may be elided as an optimization.
      string namespace = 2;
    
      // Address represents the IPv4/IPv6 address for the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. src/net/netip/fuzz_test.go

    	"fd7a:115c:a1e0:ab12:4843:cd96:626b:430b",
    	// IPv6 with elided fields in the middle.
    	"fd7a:115c::626b:430b",
    	// IPv6 with elided fields at the end.
    	"fd7a:115c:a1e0:ab12:4843:cd96::",
    	// IPv6 with single elided field at the end.
    	"fd7a:115c:a1e0:ab12:4843:cd96:626b::",
    	"fd7a:115c:a1e0:ab12:4843:cd96:626b:0",
    	// IPv6 with single elided field in the middle.
    	"fd7a:115c:a1e0::4843:cd96:626b:430b",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. src/encoding/json/stream.go

    		n := scanp - dec.scanp
    		err = dec.refill()
    		scanp = dec.scanp + n
    	}
    	return scanp - dec.scanp, nil
    }
    
    func (dec *Decoder) refill() error {
    	// Make room to read more into the buffer.
    	// First slide down data already consumed.
    	if dec.scanp > 0 {
    		dec.scanned += int64(dec.scanp)
    		n := copy(dec.buf, dec.buf[dec.scanp:])
    		dec.buf = dec.buf[:n]
    		dec.scanp = 0
    	}
    
    	// Grow buffer if not large enough.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    flict=function(){return p.fn[m]=y,k._jQueryInterface},k),j=function(t){var e="carousel",n="bs.carousel",i="."+n,o=t.fn[e],a={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0},l={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean"},h="next",c="prev",u="left",f="right",d={SLIDE:"slide"+i,SLID:"slid"+i,KEYDOWN:"keydown"+i,MOUSEENTER:"mouseenter"+i,MOUSELEAVE:"mouseleave"+i,TOUCHEND:"touchend"+i,LOAD_DATA_API:"load"+i+".data-api",CLI...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
Back to top