Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for dirty (0.07 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. requirements-tests.txt

    -e .[all]
    -r requirements-docs-tests.txt
    pytest >=7.1.3,<8.0.0
    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.8.0
    ruff ==0.2.0
    dirty-equals ==0.6.0
    # TODO: once removing databases from tutorial, upgrade SQLAlchemy
    # probably when including SQLModel
    sqlalchemy >=1.3.18,<1.4.43
    databases[sqlite] >=0.3.2,<0.7.0
    flask >=1.1.2,<3.0.0
    anyio[trio] >=3.2.1,<4.0.0
    PyJWT==2.8.0
    pyyaml >=5.3.1,<7.0.0
    passlib[bcrypt] >=1.7.2,<2.0.0
    
    # types
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 468 bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/AbstractFileLockManagerTest.groovy

        }
    
        abstract void isVersionLockFile(TestFile lockFile, boolean dirty)
    
        void isVersionLockFileWithInfoRegion(TestFile lockFile, boolean dirty) {
            isVersionLockFileWithInfoRegion(lockFile, dirty, "123", "operation")
        }
    
        abstract void isVersionLockFileWithInfoRegion(TestFile lockFile, boolean dirty, String processIdentifier, String operationalName)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/resourcequota/resource_quota_controller.go

    	// quota is dirty if any part of spec hard limits differs from the status hard limits
    	statusLimitsDirty := !apiequality.Semantic.DeepEqual(resourceQuota.Spec.Hard, resourceQuota.Status.Hard)
    
    	// dirty tracks if the usage status differs from the previous sync,
    	// if so, we send a new usage with latest status
    	// if this is our first sync, it will be dirty by default, since we need track usage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    	killCycles(tparams, inferred)
    
    	// dirty tracks the indices of all types that may still contain type parameters.
    	// We know that nil type entries and entries corresponding to provided (non-nil)
    	// type arguments are clean, so exclude them from the start.
    	var dirty []int
    	for i, typ := range inferred {
    		if typ != nil && (i >= len(targs) || targs[i] == nil) {
    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/types2/infer.go

    	killCycles(tparams, inferred)
    
    	// dirty tracks the indices of all types that may still contain type parameters.
    	// We know that nil type entries and entries corresponding to provided (non-nil)
    	// type arguments are clean, so exclude them from the start.
    	var dirty []int
    	for i, typ := range inferred {
    		if typ != nil && (i >= len(targs) || targs[i] == nil) {
    			dirty = append(dirty, i)
    		}
    	}
    
    	for len(dirty) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

        /**
         * Copies the given resource to the test directory.
         */
        public void maybeCopy(String resource) {
            // Multi version tests append to the method name, making it miss the resources
            // Below is a dirty way to strip the added content
            if (resource.contains(" ")) {
                resource = resource.substring(0, resource.indexOf(' '));
            }
            TestFile dir = resources.findResource(resource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. 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)
Back to top