Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for Unlock1 (0.37 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	n.lock.RLock()
    	defer n.lock.RUnlock()
    	return n.nodeHealths[name].deepCopy()
    }
    
    func (n *nodeHealthMap) set(name string, data *nodeHealthData) {
    	n.lock.Lock()
    	defer n.lock.Unlock()
    	n.nodeHealths[name] = data
    }
    
    type podUpdateItem struct {
    	namespace string
    	name      string
    }
    
    // Controller is the controller that manages node's life cycle.
    type Controller struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /** Cleanup collected entries when the lock is available. */
        void tryDrainReferenceQueues() {
          if (tryLock()) {
            try {
              maybeDrainReferenceQueues();
            } finally {
              unlock();
            }
          }
        }
    
        @GuardedBy("this")
        void drainKeyReferenceQueue(ReferenceQueue<K> keyReferenceQueue) {
          Reference<? extends K> ref;
          int i = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    }
    
    func (j *TestJar) SetCookies(u *url.URL, cookies []*Cookie) {
    	j.m.Lock()
    	defer j.m.Unlock()
    	if j.perURL == nil {
    		j.perURL = make(map[string][]*Cookie)
    	}
    	j.perURL[u.Host] = cookies
    }
    
    func (j *TestJar) Cookies(u *url.URL) []*Cookie {
    	j.m.Lock()
    	defer j.m.Unlock()
    	return j.perURL[u.Host]
    }
    
    func TestRedirectCookiesJar(t *testing.T) { run(t, testRedirectCookiesJar) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    // cached stacks around isn't a problem.
    func markrootFreeGStacks() {
    	// Take list of dead Gs with stacks.
    	lock(&sched.gFree.lock)
    	list := sched.gFree.stack
    	sched.gFree.stack = gList{}
    	unlock(&sched.gFree.lock)
    	if list.empty() {
    		return
    	}
    
    	// Free stacks.
    	q := gQueue{list.head, list.head}
    	for gp := list.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {
    		stackfree(gp.stack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	}
    
    	if !dstOpts.NoLock {
    		lk := er.NewNSLock(dstBucket, dstObject)
    		lkctx, err := lk.GetLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return oi, err
    		}
    		ctx = lkctx.Context()
    		defer lk.Unlock(lkctx)
    	}
    	// Read metadata associated with the object from all disks.
    	storageDisks := er.getDisks()
    
    	var metaArr []FileInfo
    	var errs []error
    
    	// Read metadata associated with the object from all disks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    	proxier.mu.Lock()
    	proxier.needFullSync = true
    	proxier.mu.Unlock()
    
    	proxier.syncProxyRules()
    }
    
    // This is where all of the iptables-save/restore calls happen.
    // The only other iptables rules are those that are setup in iptablesInit()
    // This assumes proxier.mu is NOT held
    func (proxier *Proxier) syncProxyRules() {
    	proxier.mu.Lock()
    	defer proxier.mu.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    	globalObjLayerMutex.Lock()
    	globalObjectAPI = nil
    	globalObjLayerMutex.Unlock()
    }
    
    // reset the value of the Global server config.
    // set it to `nil`.
    func resetGlobalConfig() {
    	// hold the mutex lock before a new config is assigned.
    	globalServerConfigMu.Lock()
    	// Save the loaded config globally.
    	globalServerConfig = nil
    	globalServerConfigMu.Unlock()
    }
    
    func resetGlobalEndpoints() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	func() {
    		f.lock.Lock()
    		defer f.lock.Unlock()
    		if f.inflight < f.capacity {
    			f.inflight++
    			canExecute = true
    		}
    	}()
    	if !canExecute {
    		return
    	}
    
    	if f.preExecutePanic {
    		panic("pre-exec-panic")
    	}
    	execFn()
    	if f.postExecutePanic {
    		panic("post-exec-panic")
    	}
    
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	f.inflight--
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    func (r *crdHandler) createCustomResourceDefinition(obj interface{}) {
    	crd := obj.(*apiextensionsv1.CustomResourceDefinition)
    	r.customStorageLock.Lock()
    	defer r.customStorageLock.Unlock()
    	// this could happen if the create event is merged from create-update events
    	storageMap := r.customStorage.Load().(crdStorageMap)
    	oldInfo, found := storageMap[crd.UID]
    	if !found {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		return
    	}
    
    	// We need to write some data, so get an exclusive lock and re-check any conditions.
    	c.mutex.RUnlock()
    	defer c.mutex.RLock()
    	c.mutex.Lock()
    	defer c.mutex.Unlock()
    	if c.SessionTicketKey == [32]byte{} {
    		if _, err := io.ReadFull(c.rand(), c.SessionTicketKey[:]); err != nil {
    			panic(fmt.Sprintf("tls: unable to generate random session ticket key: %v", err))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top