Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for intPtr (0.2 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    			},
    			Spec: v1.ServiceSpec{
    				Ports: []v1.ServicePort{
    					{
    						Name:       "http",
    						Port:       80,
    						TargetPort: intstr.FromInt32(8080),
    					},
    					{
    						Name:       "http2",
    						Port:       90,
    						TargetPort: intstr.FromInt32(9090),
    					},
    				},
    				Selector:  labels,
    				ClusterIP: "9.9.9.9",
    			},
    		})
    		makeIstioObject(t, s.Store(), config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    }
    
    type OuterStruct struct {
    	InnerStruct
    	IntAttr int `xml:"int,attr"`
    }
    
    type OuterNamedStruct struct {
    	InnerStruct
    	XMLName Name `xml:"outerns test"`
    	IntAttr int  `xml:"int,attr"`
    }
    
    type OuterNamedOrderedStruct struct {
    	XMLName Name `xml:"outerns test"`
    	InnerStruct
    	IntAttr int `xml:"int,attr"`
    }
    
    type OuterOuterStruct struct {
    	OuterStruct
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	appsv1beta1 "k8s.io/api/apps/v1beta1"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // describes the attributes of a scale subresource
    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    	DeprecatedRollbackTo           = "deprecated.deployment.rollback.to"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta1/zz_generated.conversion.go

    	v1beta1 "k8s.io/api/apps/v1beta1"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    	apps "k8s.io/kubernetes/pkg/apis/apps"
    	autoscaling "k8s.io/kubernetes/pkg/apis/autoscaling"
    	core "k8s.io/kubernetes/pkg/apis/core"
    	corev1 "k8s.io/kubernetes/pkg/apis/core/v1"
    )
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 52.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // to be closed.
    func GetCurrentProcessToken() Token {
    	return Token(^uintptr(4 - 1))
    }
    
    // GetCurrentThreadToken return the access token associated with
    // the current thread. It is a pseudo token that does not need
    // to be closed.
    func GetCurrentThreadToken() Token {
    	return Token(^uintptr(5 - 1))
    }
    
    // GetCurrentThreadEffectiveToken returns the effective access token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    limitations under the License.
    */
    
    package v1beta2
    
    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    const (
    	ControllerRevisionHashLabelKey = "controller-revision-hash"
    	StatefulSetRevisionLabel       = ControllerRevisionHashLabelKey
    	DeprecatedRollbackTo           = "deprecated.deployment.rollback.to"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. pkg/apis/networking/v1/zz_generated.conversion.go

    	corev1 "k8s.io/api/core/v1"
    	v1 "k8s.io/api/networking/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    	core "k8s.io/kubernetes/pkg/apis/core"
    	networking "k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/testing/testing.go

    func callerName(skip int) string {
    	var pc [1]uintptr
    	n := runtime.Callers(skip+2, pc[:]) // skip + runtime.Callers + callerName
    	if n == 0 {
    		panic("testing: zero callers found")
    	}
    	return pcToName(pc[0])
    }
    
    func pcToName(pc uintptr) string {
    	pcs := []uintptr{pc}
    	frames := runtime.CallersFrames(pcs)
    	frame, _ := frames.Next()
    	return frame.Function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    	linkctxt *Link
    	ldr      *loader.Loader
    	arch     *sys.Arch
    
    	// This maps type name string (e.g. "uintptr") to loader symbol for
    	// the DWARF DIE for that type (e.g. "go:info.type.uintptr")
    	tmap map[string]loader.Sym
    
    	// This maps loader symbol for the DWARF DIE symbol generated for
    	// a type (e.g. "go:info.uintptr") to the type symbol itself
    	// ("type:uintptr").
    	// FIXME: try converting this map (and the next one) to a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top