Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dirty (0.05 sec)

  1. src/sync/map.go

    	m.misses++
    	if m.misses < len(m.dirty) {
    		return
    	}
    	m.read.Store(&readOnly{m: m.dirty})
    	m.dirty = nil
    	m.misses = 0
    }
    
    func (m *Map) dirtyLocked() {
    	if m.dirty != nil {
    		return
    	}
    
    	read := m.loadReadOnly()
    	m.dirty = make(map[any]*entry, len(read.m))
    	for k, e := range read.m {
    		if !e.tryExpungeLocked() {
    			m.dirty[k] = e
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    	// just return without opening go.sum.
    	dirty := false
    Outer:
    	for m, hs := range goSum.m {
    		for _, h := range hs {
    			st := goSum.status[modSum{m, h}]
    			if st.dirty && (!st.used || keep[m]) {
    				dirty = true
    				break Outer
    			}
    		}
    	}
    	if !dirty {
    		return nil
    	}
    	if readonly {
    		return ErrGoSumDirty
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_pod_control.go

    		consistent := true
    		// if the Pod does not conform to its identity, update the identity and dirty the Pod
    		if !identityMatches(set, pod) {
    			updateIdentity(set, pod)
    			consistent = false
    		}
    		// if the Pod does not conform to the StatefulSet's storage requirements, update the Pod's PVC's,
    		// dirty the Pod, and create any missing PVCs
    		if !storageMatches(set, pod) {
    			updateStorage(set, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			return nil
    		}
    		return err
    	}
    
    	index := MainModules.GetSingleIndexOrNil()
    	dirty := index.modFileIsDirty(modFile)
    	if dirty && cfg.BuildMod != "mod" {
    		// If we're about to fail due to -mod=readonly,
    		// prefer to report a dirty go.mod over a dirty go.sum
    		return errGoModDirty
    	}
    
    	if !dirty && cfg.CmdName != "mod tidy" {
    		// The go.mod file has the same semantic content that it had before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Runtime  uint64
    	Deadline uint64
    	Period   uint64
    	Util_min uint32
    	Util_max uint32
    }
    
    const SizeofSchedAttr = 0x38
    
    type Cachestat_t struct {
    	Cache            uint64
    	Dirty            uint64
    	Writeback        uint64
    	Evicted          uint64
    	Recently_evicted uint64
    }
    type CachestatRange struct {
    	Off uint64
    	Len uint64
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top