Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for dirty (0.2 sec)

  1. src/sync/map_test.go

    		}
    	}
    }
    
    func TestIssue40999(t *testing.T) {
    	var m sync.Map
    
    	// Since the miss-counting in missLocked (via Delete)
    	// compares the miss count with len(m.dirty),
    	// add an initial entry to bias len(m.dirty) above the miss count.
    	m.Store(nil, struct{}{})
    
    	var finalized uint32
    
    	// Set finalizers that count for collected keys. A non-zero count
    	// indicates that keys have not been leaked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	dirty := false
    
    	claimClone := claim.DeepCopy()
    	if claim.Status.Phase != phase {
    		claimClone.Status.Phase = phase
    		dirty = true
    	}
    
    	if volume == nil {
    		// Need to reset AccessModes and Capacity
    		if claim.Status.AccessModes != nil {
    			claimClone.Status.AccessModes = nil
    			dirty = true
    		}
    		if claim.Status.Capacity != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. cmd/metacache.go

    	metacacheMaxClientWait = 3 * time.Minute
    
    	// metacacheBlockSize is the number of file/directory entries to have in each block.
    	metacacheBlockSize = 5000
    
    	// metacacheSharePrefix controls whether prefixes on dirty paths are always shared.
    	// This will make `test/a` and `test/b` share listings if they are concurrent.
    	// Enabling this will make cache sharing more likely and cause less IO,
    	// but may cause additional latency to some calls.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/runtime/pprof/vminfo_darwin_test.go

    	// Output report format:  2.4  -64-bit process
    	// VM page size:  16384 bytes
    	//
    	// ==== Non-writable regions for process 53799
    	// REGION TYPE                    START END         [ VSIZE  RSDNT  DIRTY   SWAP] PRT/MAX SHRMOD PURGE    REGION DETAIL
    	// __TEXT                      1029a0000-1033bc000    [ 10.1M  7360K     0K     0K] r-x/rwx SM=COW          /Users/USER/*/gopls
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            then:
            target.file( '.git').assertIsDir()
            target.file( 'submodule/foo.txt').text == "hello from submodule"
        }
    
        def 'reset a cloned repository with dirty working dir'() {
            given:
            def target = tmpDir.file('versionDir')
            gitVcs.populate(target, repoHead, repoSpec)
    
            def removed = target.file("source.txt")
            removed.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    		}
    		return err
    	}
    
    	// convert versionedAttr.VersionedObject to the internal version in the underlying admission.Attributes
    	if v.versionedAttr != nil && v.versionedAttr.VersionedObject != nil && v.versionedAttr.Dirty {
    		return o.GetObjectConvertor().Convert(v.versionedAttr.VersionedObject, v.versionedAttr.Attributes.GetObject(), nil)
    	}
    
    	return nil
    }
    
    // note that callAttrMutatingHook updates attr
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. pkg/kube/client.go

    	nParts := len(versionParts)
    	if nParts >= 3 {
    		// The format will be like 1.12.0-016bc46f4a5e0ef3fa135b3c5380ab7765467c1a-dirty-Modified
    		// version is '1.12.0' || '1.12.0-custom-build'
    		// revision is '016bc46f4a5e0ef3fa135b3c5380ab7765467c1a' || '016bc46f4a5e0ef3fa135b3c5380ab7765467c1a-dirty'
    		// status is 'Modified' || 'Clean'
    		// Ref From common/scripts/report_build_info.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. src/encoding/gob/encoder.go

    // writeMessage sends the data item preceded by an unsigned count of its length.
    func (enc *Encoder) writeMessage(w io.Writer, b *encBuffer) {
    	// Space has been reserved for the length at the head of the message.
    	// This is a little dirty: we grab the slice from the bytes.Buffer and massage
    	// it by hand.
    	message := b.Bytes()
    	messageLen := len(message) - maxLength
    	// Length cannot be bigger than the decoder can handle.
    	if messageLen >= tooBig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	for _, binding := range podVolumes.StaticBindings {
    		newPV, dirty, err := volume.GetBindVolumeToClaim(binding.pv, binding.pvc)
    		logger.V(5).Info("AssumePodVolumes: GetBindVolumeToClaim",
    			"pod", klog.KObj(assumedPod),
    			"PV", klog.KObj(binding.pv),
    			"PVC", klog.KObj(binding.pvc),
    			"newPV", klog.KObj(newPV),
    			"dirty", dirty,
    		)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. 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)
Back to top