Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 503 for curB (0.12 sec)

  1. src/runtime/asm_mips64x.s

    	// save that information (m->curg->sched) so we can restore it.
    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. src/runtime/asm_riscv64.s

    	// save that information (m->curg->sched) so we can restore it.
    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  3. src/runtime/asm_s390x.s

    	// save that information (m->curg->sched) so we can restore it.
    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Cc    [11]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type W_Mnth struct {
    	Hid   [4]byte
    	Size  int32
    	Cur1  int32 //32bit pointer
    	Cur2  int32 //^
    	Devno uint32
    	_     [4]byte
    }
    
    type W_Mntent struct {
    	Fstype       uint32
    	Mode         uint32
    	Dev          uint32
    	Parentdev    uint32
    	Rootino      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/runtime/asm_mipsx.s

    	// save that information (m->curg->sched) so we can restore it.
    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/runtime/asm_loong64.s

    TEXT runtime·switchToCrashStack0(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), REGCTXT	// context register
    	MOVV	g_m(g), R4	// curm
    
    	// set g to gcrash
    	MOVV	$runtime·gcrash(SB), g	// g = &gcrash
    	JAL	runtime·save_g(SB)
    	MOVV	R4, g_m(g)	// g.m = curm
    	MOVV	g, m_g0(R4)	// curm.g0 = g
    
    	// switch to crashstack
    	MOVV	(g_stack+stack_hi)(g), R4
    	ADDV	$(-4*8), R4, R3
    
    	// call target function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    	result.NonResourceURLs = rule.NonResourceURLs
    	result.Verbs = rule.Verbs
    	return result
    }
    
    func ruleExists(haystack []rbacv1.PolicyRule, needle rbacv1.PolicyRule) bool {
    	for _, curr := range haystack {
    		if equality.Semantic.DeepEqual(curr, needle) {
    			return true
    		}
    	}
    	return false
    }
    
    // Run starts the controller and blocks until stopCh is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/runtime/asm_arm.s

    	// save that information (m->curg->sched) so we can restore it.
    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/union_content.go

    func (c unionCAContent) Name() string {
    	names := []string{}
    	for _, curr := range c {
    		names = append(names, curr.Name())
    	}
    	return strings.Join(names, ",")
    }
    
    // CurrentCABundleContent provides ca bundle byte content
    func (c unionCAContent) CurrentCABundleContent() []byte {
    	caBundles := [][]byte{}
    	for _, curr := range c {
    		if currCABytes := curr.CurrentCABundleContent(); len(currCABytes) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 14:37:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/config_compare_test.go

    		name     string
    		prev     config.Config
    		curr     config.Config
    		expected bool
    	}{
    		{
    			name: "different gvk",
    			prev: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    				},
    				Spec: &networking.VirtualService{},
    			},
    			curr: config.Config{
    				Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top