Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 450 for typed (0.04 sec)

  1. pkg/controller/volume/expand/expand_controller.go

    	return ""
    }
    
    func (expc *expandController) GetPodVolumeDir(podUID types.UID, pluginName string, volumeName string) string {
    	return ""
    }
    
    func (expc *expandController) GetPodVolumeDeviceDir(podUID types.UID, pluginName string) string {
    	return ""
    }
    
    func (expc *expandController) GetPodPluginDir(podUID types.UID, pluginName string) string {
    	return ""
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. src/go/types/infer.go

    func containsNil(list []Type) bool {
    	for _, t := range list {
    		if t == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // renameTParams renames the type parameters in the given type such that each type
    // parameter is given a new identity. renameTParams returns the new type parameters
    // and updated type. If the result type is unchanged from the argument type, none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager.go

    type ControllerContext struct {
    	// ClientBuilder will provide a client for this controller to use
    	ClientBuilder clientbuilder.ControllerClientBuilder
    
    	// InformerFactory gives access to informers for the controller.
    	InformerFactory informers.SharedInformerFactory
    
    	// ObjectOrMetadataInformerFactory gives access to informers for typed resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/pgen.go

    			// to be scanned when it shouldn't be). See issue 24993.
    			w = 1
    		}
    		s.stksize += w
    		s.stksize = types.RoundUp(s.stksize, n.Type().Alignment())
    		if n.Type().Alignment() > int64(types.RegSize) {
    			s.stkalign = n.Type().Alignment()
    		}
    		if n.Type().HasPointers() {
    			s.stkptrsize = s.stksize
    			lastHasPtr = true
    		} else {
    			lastHasPtr = false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    	DefPredeclaredTestFuncs()
    	testDirFiles(t, "../../internal/types/testdata/check", false)
    }
    func TestSpec(t *testing.T)      { testDirFiles(t, "../../internal/types/testdata/spec", false) }
    func TestExamples(t *testing.T)  { testDirFiles(t, "../../internal/types/testdata/examples", false) }
    func TestFixedbugs(t *testing.T) { testDirFiles(t, "../../internal/types/testdata/fixedbugs", false) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    }
    
    // Ensure Webhook implements the authorizer.Authorizer interface.
    var _ authorizer.Authorizer = (*WebhookAuthorizer)(nil)
    
    type subjectAccessReviewer interface {
    	Create(context.Context, *authorizationv1.SubjectAccessReview, metav1.CreateOptions) (*authorizationv1.SubjectAccessReview, int, error)
    }
    
    type WebhookAuthorizer struct {
    	subjectAccessReview subjectAccessReviewer
    	responseCache       *cache.LRUExpireCache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    type note struct {
    	// Futex-based impl treats it as uint32 key,
    	// while sema-based impl as M* waitm.
    	// Used to be a union, but unions break precise GC.
    	key uintptr
    }
    
    type funcval struct {
    	fn uintptr
    	// variable-size, fn-specific data here
    }
    
    type iface struct {
    	tab  *itab
    	data unsafe.Pointer
    }
    
    type eface struct {
    	_type *_type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    	{"lt true true", "", false},             // Unordered types.
    	{"lt 1+0i 1+0i", "", false},             // Unordered types.
    	{"eq .Ptr 1", "", false},                // Incompatible types.
    	{"eq .Ptr .NegOne", "", false},          // Incompatible types.
    	{"eq .Map .V1", "", false},              // Uncomparable types.
    	{"eq .NonNilMap .NonNilMap", "", false}, // Uncomparable types.
    }
    
    func TestComparison(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    	// floating-point argument types must be identical
    	type F32 float32
    	type F64 float64
    	var x32 F32
    	var x64 F64
    	c64 = complex(x32, x32)
    	_ = complex(x32 /* ERROR "mismatched types" */ , f32)
    	_ = complex(f32 /* ERROR "mismatched types" */ , x32)
    	c128 = complex(x64, x64)
    	_ = c128
    	_ = complex(x64 /* ERROR "mismatched types" */ , f64)
    	_ = complex(f64 /* ERROR "mismatched types" */ , x64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. pkg/controller/testutil/test_utils.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/strategicpatch"
    	"k8s.io/apimachinery/pkg/watch"
    	v1apply "k8s.io/client-go/applyconfigurations/core/v1"
    	"k8s.io/client-go/kubernetes/fake"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/cache"
    	ref "k8s.io/client-go/tools/reference"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top