Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ptrstore (0.21 sec)

  1. src/cmd/compile/internal/ssa/nilcheck.go

    				// we've recorded in the unnecessary map is now obsolete.
    				unnecessary.clear()
    			}
    
    			// Find any pointers that this op is guaranteed to fault on if nil.
    			var ptrstore [2]*Value
    			ptrs := ptrstore[:0]
    			if opcodeTable[v.Op].faultOnNilArg0 && (faultOnLoad || v.Type.IsMemory()) {
    				// On AIX, only writing will fault.
    				ptrs = append(ptrs, v.Args[0])
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. pkg/registry/core/rest/storage_core.go

    	limitrangestore "k8s.io/kubernetes/pkg/registry/core/limitrange/storage"
    	nodestore "k8s.io/kubernetes/pkg/registry/core/node/storage"
    	pvstore "k8s.io/kubernetes/pkg/registry/core/persistentvolume/storage"
    	pvcstore "k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim/storage"
    	podstore "k8s.io/kubernetes/pkg/registry/core/pod/storage"
    	podtemplatestore "k8s.io/kubernetes/pkg/registry/core/podtemplate/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update_test.go

    	markPodsReady(podControl.podStore)
    
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 0, maxUnavailable, 0)
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, maxUnavailable, 0, 0)
    	markPodsReady(podControl.podStore)
    
    	clearExpectations(t, manager, ds, podControl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    limitations under the License.
    */
    
    package dump
    
    import (
    	"fmt"
    	"testing"
    )
    
    func ptrint(i int) *int {
    	return &i
    }
    
    func ptrstr(s string) *string {
    	return &s
    }
    
    // custom type to test Stringer interface on non-pointer receiver.
    type customString string
    
    // String implements the Stringer interface for testing invocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pkg/controller/controller_utils_test.go

    	fakeClock := testingclock.NewFakeClock(fakeTime)
    	ttlPolicy := &cache.TTLPolicy{TTL: ttl, Clock: fakeClock}
    	ttlStore := cache.NewFakeExpirationStore(
    		ExpKeyFunc, nil, ttlPolicy, fakeClock)
    	return &ControllerExpectations{ttlStore}, fakeClock
    }
    
    func newReplicationController(replicas int) *v1.ReplicationController {
    	rc := &v1.ReplicationController{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils.go

    //	}
    //
    // Implementation:
    //	ControlleeExpectation = pair of atomic counters to track controllee's creation/deletion
    //	ControllerExpectationsStore = TTLStore + a ControlleeExpectation per controller
    //
    // * Once set expectations can only be lowered
    // * A controller isn't synced till its expectations are either fulfilled, or expire
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top