Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 216 for typed (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	corev1informers "k8s.io/client-go/informers/core/v1"
    	"k8s.io/client-go/kubernetes"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	corev1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/cert"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        return failure();
      // If no resource type results were found, no further cleanup needed.
      if (!has_resource_result) return success();
    
      // Drop unused results.
      EliminateUnusedResultsForWhile(op);
      return success();
    }
    
    // Canonicalizes region based if/case and cluster operations. If the same
    // captured resource typed value is used for all region results, then that value
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/syscall/types_windows.go

    )
    
    // Pointer represents a pointer to an arbitrary Windows type.
    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. pkg/controller/servicecidrs/servicecidrs_controller.go

    	networkinginformers "k8s.io/client-go/informers/networking/v1alpha1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	networkinglisters "k8s.io/client-go/listers/networking/v1alpha1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top