Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for endClass (0.15 sec)

  1. pkg/controller/volume/persistentvolume/recycle_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestRecycleMultiSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	tests := []controllerTest{
    		{
    			// recycle failure - recycle returns error. The controller should
    			// try again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/go/types/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			// Create a new instance and populate the context to avoid endless
    			// recursion. The position used here is irrelevant because validation only
    			// occurs on t (we don't call validType on named), but we use subst.pos to
    			// help with debugging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/delete_test.go

    //  5. When 3. does not do any changes, finish the tests and compare final set
    //     of volumes/claims with expected claims/volumes and report differences.
    //
    // Some limit of calls in enforced to prevent endless loops.
    func TestDeleteMultiSync(t *testing.T) {
    	tests := []controllerTest{
    		{
    			// delete failure - delete returns error. The controller should
    			// try again.
    			name:            "9-1 - delete returns error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    			// the current interface. Example:
    			//
    			//    type T interface {
    			//        m() interface{T}
    			//    }
    			//
    			// If two such (differently named) interfaces are compared,
    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // interface methods.
    //
    // When an unnamed non-empty interface type appears anywhere among the
    // arguments or results of an interface method, there is a potential
    // for endless recursion. Consider:
    //
    //	type X interface { m() []*interface { X } }
    //
    // The problem is that the Methods of the interface in m's result type
    // include m itself; there is no mention of the named type X that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pkg/xds/server.go

    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    	// Typically, this should be set to 'false' after response; keeping it true would likely result in an endless loop.
    	AlwaysRespond bool
    
    	// LastResources tracks the contents of the last push.
    	// This field is extremely expensive to maintain and is typically disabled
    	LastResources Resources
    }
    
    type Watcher interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typexpr.go

    	if check.conf.Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    			check.indent--
    			var under Type
    			if T != nil {
    				// Calling under() here may lead to endless instantiations.
    				// Test case: type T[P any] *T[P]
    				under = safeUnderlying(T)
    			}
    			if T == under {
    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/go/types/typexpr.go

    	if check.conf._Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    			check.indent--
    			var under Type
    			if T != nil {
    				// Calling under() here may lead to endless instantiations.
    				// Test case: type T[P any] *T[P]
    				under = safeUnderlying(T)
    			}
    			if T == under {
    				check.trace(e0.Pos(), "=> %s // %s", T, goTypeName(T))
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top