Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for dirty (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal
    
    import okhttp3.internal.idn.IDNA_MAPPING_TABLE
    import okhttp3.internal.idn.Punycode
    import okio.Buffer
    
    /**
     * Quick and dirty pattern to differentiate IP addresses from hostnames. This is an approximation
     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    }
    
    func fakeVersion() version.Info {
    	return version.Info{
    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    	}
    }
    
    // generateSelfSignedCertKey creates a self-signed certificate and key for the given host.
    // Host may be an IP or a DNS name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top