Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dirty (0.14 sec)

  1. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        val creator = cache.edit("k1")!!
        assertJournalEquals("DIRTY k1") // DIRTY must always be flushed.
        creator.setString(0, "AB")
        creator.setString(1, "C")
        creator.commit()
        cache.close()
        assertJournalEquals("DIRTY k1", "CLEAN k1 2 1")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K 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. 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)
  4. src/index/suffixarray/sais2.go

    	// we're processing suffixes in sorted order
    	// and accessing buckets indexed by the
    	// byte before the sorted order, which still
    	// has very good locality.
    	// Invariant: b is cached, possibly dirty copy of bucket[cB].
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    			// Skip empty entry.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	tCtx := ktesting.Init(t)
    	tc.ctx = tCtx
    
    	tc.client = fake.NewSimpleClientset(objs...)
    	reactor := createReactor(tc.client.Tracker())
    	tc.client.PrependReactor("*", "*", reactor)
    
    	// Quick-and-dirty workaround for fake client storing ResourceClassParameters and
    	// ResourceClaimParameters as "resourceclassparameterses" and "resourceclaimparameterses":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    * gci: decouple from the built-in kubelet version ([#31367](https://github.com/kubernetes/kubernetes/pull/31367), [@Amey-D](https://github.com/Amey-D))
    * Bump GCE debian image to container-vm-v20161025 (CVE-2016-5195 Dirty… ([#35825](https://github.com/kubernetes/kubernetes/pull/35825), [@dchen1107](https://github.com/dchen1107))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// these.
    	allocCache uint64
    
    	// allocBits and gcmarkBits hold pointers to a span's mark and
    	// allocation bits. The pointers are 8 byte aligned.
    	// There are three arenas where this data is held.
    	// free: Dirty arenas that are no longer accessed
    	//       and can be reused.
    	// next: Holds information to be used in the next GC cycle.
    	// current: Information being used during this GC cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top