Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NSR (0.17 sec)

  1. src/internal/types/testdata/fixedbugs/issue50779.go

    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR // ERROR "invalid use of type alias SR in recursive type"
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 414 bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue50779a.go

    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 20:18:45 UTC 2023
    - 356 bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/wait.go

    	dr, dnr := deploymentsReady(cs, deployments, resourceDebugInfo)
    	dsr, dsnr := daemonsetsReady(daemonsets)
    	stsr, stsnr := statefulsetsReady(statefulsets)
    	nsr, nnr := namespacesReady(namespaces)
    	pr, pnr := podsReady(pods)
    	isReady := dr && nsr && dsr && stsr && pr
    	notReady := append(append(append(append(nnr, dnr...), pnr...), dsnr...), stsnr...)
    	if !isReady {
    		l.ReportWaiting(notReady)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top