Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for Terminate (0.11 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// - The dynamicresources plugin allocates claim A and updates the assume cache.
    		// - A second pod gets marked as unschedulable based on that assume cache.
    		// - Before the informer cache here catches up, the pod runs, terminates and
    		//   the claim gets deallocated without ever sending the claim status with
    		//   allocation to the scheduler.
    		// - The comparison below is for a *very* old claim with no allocation and the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    // The frame layout needs to match systemstack
    // so that it can pretend to be systemstack_switch.
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    		panic(err)
    	}
    
    	T := pkg.Scope().Lookup("Instance").Type()
    	_, _, _ = LookupFieldOrMethod(T, false, pkg, "M") // verify that LookupFieldOrMethod terminates
    }
    
    func sameSlice(a, b []int) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i, x := range a {
    		if x != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		panic(err)
    	}
    
    	T := pkg.Scope().Lookup("Instance").Type()
    	_, _, _ = LookupFieldOrMethod(T, false, pkg, "M") // verify that LookupFieldOrMethod terminates
    }
    
    func sameSlice(a, b []int) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i, x := range a {
    		if x != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top