Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for Mem (0.02 sec)

  1. src/sync/rwmutex.go

    // the n'th call to Unlock “synchronizes before” that call to RLock,
    // and the corresponding call to [RWMutex.RUnlock] “synchronizes before”
    // the n+1'th call to Lock.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    type RWMutex struct {
    	w           Mutex        // held if there are pending writers
    	writerSem   uint32       // semaphore for writers to wait for completing readers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/fake.go

    	se := serviceentry.NewController(
    		configController,
    		xdsUpdater,
    		env.Watcher,
    		serviceentry.WithClusterID(opts.ClusterID))
    	// TODO allow passing in registry, for k8s, mem reigstry
    	serviceDiscovery.AddRegistry(se)
    	msd := memregistry.NewServiceDiscovery(opts.Services...)
    	msd.XdsUpdater = xdsUpdater
    	for _, instance := range opts.Instances {
    		msd.AddInstance(instance)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/sync/pool.go

    // a call to [Pool.Get] returning that same value x.
    // Similarly, a call to New returning x “synchronizes before”
    // a call to Get returning that same value x.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Pool struct {
    	noCopy noCopy
    
    	local     unsafe.Pointer // local fixed-size per-P pool, actual type is [P]poolLocal
    	localSize uintptr        // size of the local array
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/sync/mutex.go

    // A successful call to [Mutex.TryLock] is equivalent to a call to Lock.
    // A failed call to TryLock does not establish any “synchronizes before”
    // relation at all.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    type Mutex struct {
    	state int32
    	sema  uint32
    }
    
    // A Locker represents an object that can be locked and unlocked.
    type Locker interface {
    	Lock()
    	Unlock()
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    		n := pollBlockSize / pdSize
    		if n == 0 {
    			n = 1
    		}
    		// Must be in non-GC memory because can be referenced
    		// only from epoll/kqueue internals.
    		mem := persistentalloc(n*pdSize, 0, &memstats.other_sys)
    		for i := uintptr(0); i < n; i++ {
    			pd := (*pollDesc)(add(mem, i*pdSize))
    			lockInit(&pd.lock, lockRankPollDesc)
    			pd.rt.init(nil, nil)
    			pd.wt.init(nil, nil)
    			pd.link = c.first
    			c.first = pd
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks.go

    	}
    	return warnings, errorList
    }
    
    // MemCheck checks if the number of megabytes of memory is not less than required
    type MemCheck struct {
    	Mem uint64
    }
    
    // Name returns the label for memory
    func (MemCheck) Name() string {
    	return "Mem"
    }
    
    // InitNodeChecks returns checks specific to "kubeadm init"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/pods_test.go

    				corev1.ResourceCPU:         resource.MustParse("1m"),
    				generic.ObjectCountQuotaResourceNameFor(schema.GroupResource{Resource: "pods"}): resource.MustParse("1"),
    			},
    		},
    		"init container MEM": {
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{{
    						Resources: api.ResourceRequirements{
    							Requests: api.ResourceList{api.ResourceMemory: resource.MustParse("1m")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. src/sync/atomic/doc.go

    // This definition provides the same semantics as
    // C++'s sequentially consistent atomics and Java's volatile variables.
    //
    // [the Go memory model]: https://go.dev/ref/mem
    package atomic
    
    import (
    	"unsafe"
    )
    
    // BUG(rsc): On 386, the 64-bit functions use instructions unavailable before the Pentium MMX.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    	"google.golang.org/protobuf/proto"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    	pstruct "google.golang.org/protobuf/types/known/structpb"
    
    	mcp "istio.io/api/mcp/v1alpha1"
    	"istio.io/api/mesh/v1alpha1"
    	mem "istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pilot/pkg/util/network"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_amd64.s

    #define SHA256ROUND1(index, const, a, b, c, d, e, f, g, h) \
    	MSGSCHEDULE1(index); \
    	SHA256ROUND(index, const, a, b, c, d, e, f, g, h)
    
    
    // Definitions for AVX2 version
    
    // addm (mem), reg
    // Add reg to mem using reg-mem add and store
    #define addm(P1, P2) \
    	ADDL P2, P1; \
    	MOVL P1, P2
    
    #define XDWORD0 Y4
    #define XDWORD1 Y5
    #define XDWORD2 Y6
    #define XDWORD3 Y7
    
    #define XWORD0 X4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top