Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 496 for index (0.05 sec)

  1. tests/integration/security/ca_custom_root/main_test.go

    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "client":
    			client = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server":
    			server = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-foo":
    			serverNakedFoo = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "server-naked-bar":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/global/main.go

    //go:noinline
    func ptrData() *[1<<20 + 10]int64 {
    	return &globallib.Data
    }
    
    //go:noinline
    func testMediumOffset() {
    	for i, s := range globallib.Data[1<<16-2:] {
    		if s != int64(i)+1<<16-2 {
    			panic("testMediumOffset: index mismatch")
    		}
    	}
    
    	x := globallib.Data[1<<16-1]
    	if x != 1<<16-1 {
    		panic("testMediumOffset: direct mismatch")
    	}
    
    	y := &globallib.Data[1<<16-3]
    	if y != &ptrData()[1<<16-3] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       uint16
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/inl.go

    // license that can be found in the LICENSE file.
    
    package obj
    
    import "cmd/internal/src"
    
    // InlTree is a collection of inlined calls. The Parent field of an
    // InlinedCall is the index of another InlinedCall in InlTree.
    //
    // The compiler maintains a global inlining tree and adds a node to it
    // every time a function is inlined. For example, suppose f() calls g()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/route_openbsd.go

    	} else {
    		b[2] = byte(m.Version)
    	}
    	b[3] = byte(m.Type)
    	nativeEndian.PutUint16(b[4:6], uint16(sizeofRtMsghdr))
    	nativeEndian.PutUint32(b[16:20], uint32(m.Flags))
    	nativeEndian.PutUint16(b[6:8], uint16(m.Index))
    	nativeEndian.PutUint32(b[24:28], uint32(m.ID))
    	nativeEndian.PutUint32(b[28:32], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[sizeofRtMsghdr:], m.Addrs)
    	if err != nil {
    		return nil, err
    	}
    	if attrs > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. clause/expression.go

    						if rv.Len() == 0 {
    							builder.AddVar(builder, nil)
    						} else {
    							for i := 0; i < rv.Len(); i++ {
    								if i > 0 {
    									builder.WriteByte(',')
    								}
    								builder.AddVar(builder, rv.Index(i).Interface())
    							}
    						}
    					default:
    						builder.AddVar(builder, expr.Vars[idx])
    					}
    				}
    			} else {
    				builder.AddVar(builder, expr.Vars[idx])
    			}
    
    			idx++
    		} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/time/zoneinfo_windows.go

    	year := t.Year()
    	txi := 0
    	for y := year - 100; y < year+100; y++ {
    		tx := &l.tx[txi]
    		tx.when = pseudoUnix(y, d0) - int64(l.zone[i1].offset)
    		tx.index = uint8(i0)
    		txi++
    
    		tx = &l.tx[txi]
    		tx.when = pseudoUnix(y, d1) - int64(l.zone[i0].offset)
    		tx.index = uint8(i1)
    		txi++
    	}
    }
    
    var usPacific = syscall.Timezoneinformation{
    	Bias: 8 * 60,
    	StandardName: [32]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/image/ycbcr.go

    }
    
    // YCbCr is an in-memory image of Y'CbCr colors. There is one Y sample per
    // pixel, but each Cb and Cr sample can span one or more pixels.
    // YStride is the Y slice index delta between vertically adjacent pixels.
    // CStride is the Cb and Cr slice index delta between vertically adjacent pixels
    // that map to separate chroma samples.
    // It is not an absolute requirement, but YStride and len(Y) are typically
    // multiples of 8, and:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. src/reflect/swapper.go

    	}
    	// Fast path for slices of size 0 and 1. Nothing to swap.
    	switch v.Len() {
    	case 0:
    		return func(i, j int) { panic("reflect: slice index out of range") }
    	case 1:
    		return func(i, j int) {
    			if i != 0 || j != 0 {
    				panic("reflect: slice index out of range")
    			}
    		}
    	}
    
    	typ := v.Type().Elem().common()
    	size := typ.Size()
    	hasPtr := typ.Pointers()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top