Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 87 of 87 for Se (0.89 sec)

  1. src/image/jpeg/reader.go

    	sosMarker  = 0xda // Start Of Scan.
    	dqtMarker  = 0xdb // Define Quantization Table.
    	driMarker  = 0xdd // Define Restart Interval.
    	comMarker  = 0xfe // COMment.
    	// "APPlication specific" markers aren't part of the JPEG spec per se,
    	// but in practice, their use is described at
    	// https://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/JPEG.html
    	app0Marker  = 0xe0
    	app14Marker = 0xee
    	app15Marker = 0xef
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. src/encoding/json/encode_test.go

    		if testing.Short() && i < len(digits)-4 {
    			break
    		}
    		for exp := -30; exp <= 30; exp++ {
    			for _, sign := range "+-" {
    				for bits := 32; bits <= 64; bits += 32 {
    					s := fmt.Sprintf("%c%se%d", sign, digits[:i], exp)
    					f, err := strconv.ParseFloat(s, bits)
    					if err != nil {
    						log.Fatal(err)
    					}
    					next := math.Nextafter
    					if bits == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. src/image/png/reader_test.go

    		height            int
    	}{
    		// These bytes come from https://golang.org/issues/22304
    		//
    		// It encodes a 2147483646 × 2147483646 (i.e. 0x7ffffffe × 0x7ffffffe)
    		// NRGBA image. The (width × height) per se doesn't overflow an int64, but
    		// (width × height × bytesPerPixel) will.
    		{
    			src: []byte{
    				0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  4. pkg/adsc/adsc.go

    	for _, r := range configurations {
    		for _, h := range r.VirtualHosts {
    			vh++
    			for _, rt := range h.Routes {
    				rcount++
    				// Example: match:<prefix:"/" > route:<cluster:"outbound|9154||load-se-154.local" ...
    				adscLog.Debugf("Handle route %v, path %v, cluster %v", h.Name, rt.Match.PathSpecifier, rt.GetRoute().GetCluster())
    			}
    		}
    		rds[r.Name] = r
    		size += proto.Size(r)
    	}
    	if a.initialLoad == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    	for _, obj := range ses {
    		if obj.Meta.Name == name {
    			ns := obj.Meta.Namespace
    			if ns == "" {
    				ns = metav1.NamespaceDefault
    			}
    			if ns == namespace {
    				se := obj.Spec.(*istio.ServiceEntry)
    				return se.Hosts
    			}
    		}
    	}
    	return []string{}
    }
    
    func buildMeshAndGatewayRoutes[T any](parentRefs []routeParentReference, convertRules func(mesh bool) T) (T, T) {
    	var meshResult, gwResult T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/reflect/value.go

    		if !stringCopy {
    			panic(&ValueError{"reflect.Copy", sk})
    		}
    	}
    	src.mustBeExported()
    
    	de := dst.typ().Elem()
    	if !stringCopy {
    		se := src.typ().Elem()
    		typesMustMatch("reflect.Copy", toType(de), toType(se))
    	}
    
    	var ds, ss unsafeheader.Slice
    	if dk == Array {
    		ds.Data = dst.ptr
    		ds.Len = dst.Len()
    		ds.Cap = ds.Len
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    		service                  *model.Service
    		port                     *model.Port
    		proxyView                model.ProxyView
    		destRule                 *networking.DestinationRule
    		serviceAcct              []string // SE SAN values
    		enableAutoSni            bool
    		enableVerifyCertAtClient bool
    		expectTLSContext         *tls.UpstreamTlsContext
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top