Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Unlock1 (0.17 sec)

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

    		if !ok {
    			return false, nil, nil
    		}
    		obj, ok := createAction.GetObject().(metav1.Object)
    		if !ok {
    			return false, nil, nil
    		}
    
    		mutex.Lock()
    		defer mutex.Unlock()
    		switch action.GetVerb() {
    		case "create":
    			if obj.GetUID() != "" {
    				return true, nil, errors.New("UID must not be set on create")
    			}
    			if obj.GetResourceVersion() != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	p := &b[cap(b)-1]
    	m.Lock()
    	defer m.Unlock()
    	m.active[p] = b
    	return b, nil
    }
    
    func (m *mmapper) Munmap(data []byte) (err error) {
    	if len(data) == 0 || len(data) != cap(data) {
    		return EINVAL
    	}
    
    	// Find the base of the mapping.
    	p := &data[cap(data)-1]
    	m.Lock()
    	defer m.Unlock()
    	b := m.active[p]
    	if b == nil || &b[0] != &data[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This change is part of a larger ongoing effort to make the intended behavior of configurations more consistent and predictable, and to unlock further speed and memory improvements.
    
    Currently, the following methods should only be called with these listed allowed usages:
    
    - `resolve()` - RESOLVABLE configurations only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			return false
    		}
    
    		xldr.rtype = 0x3F<<8 + XCOFF_R_POS
    	}
    
    	xfile.Lock()
    	xfile.loaderReloc = append(xfile.loaderReloc, xldr)
    	xfile.Unlock()
    	return true
    }
    
    func (ctxt *Link) doxcoff() {
    	ldr := ctxt.loader
    
    	// TOC
    	toc := ldr.CreateSymForUpdate("TOC", 0)
    	toc.SetType(sym.SXCOFFTOC)
    	toc.SetVisibilityHidden(true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/main/webapp/css/font-awesome.min.css

    fore{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:b...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			close(finished)
    			return "", fmt.Errorf("Expected devicePath from Node.Status")
    		}
    		close(finished)
    		return devicePath, nil
    	}
    	fakePlugin.Unlock()
    
    	// Start the reconciler again.
    	go reconciler.Run(wait.NeverStop)
    
    	// 2. Delete the volume from DSW (and wait for callbacks)
    	dsw.DeletePodFromVolume(podName, generatedVolumeName)
    
    	<-finished
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/font-awesome.min.css

    fore{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\f949"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:b...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	return nil
    }
    
    func TypeSym(t *Type) *Sym {
    	return TypeSymLookup(TypeSymName(t))
    }
    
    func TypeSymLookup(name string) *Sym {
    	typepkgmu.Lock()
    	s := typepkg.Lookup(name)
    	typepkgmu.Unlock()
    	return s
    }
    
    func TypeSymName(t *Type) string {
    	name := t.LinkString()
    	// Use a separate symbol name for Noalg types for #17752.
    	if TypeHasNoAlg(t) {
    		name = "noalg." + name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    			summary, err := goModSummary(m)
    
    			mu.Lock()
    			if err == nil {
    				mg.g.Require(m, summary.require)
    			} else {
    				hasError = true
    			}
    			mu.Unlock()
    
    			return summary, err
    		})
    	}
    
    	var enqueue func(m module.Version, pruning modPruning)
    	enqueue = func(m module.Version, pruning modPruning) {
    		if m.Version == "none" {
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    	}
    }
    
    func TestSlowStartBatch(t *testing.T) {
    	fakeErr := fmt.Errorf("fake error")
    	callCnt := 0
    	callLimit := 0
    	var lock sync.Mutex
    	fn := func() error {
    		lock.Lock()
    		defer lock.Unlock()
    		callCnt++
    		if callCnt > callLimit {
    			return fakeErr
    		}
    		return nil
    	}
    
    	tests := []struct {
    		name              string
    		count             int
    		callLimit         int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top