Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for dirty (0.04 sec)

  1. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

        }
    
        void isVersionLockFile(TestFile lockFile, boolean dirty) {
            assert lockFile.isFile()
            assert lockFile.length() <= 2048
            lockFile.withDataInputStream { str ->
                // state version + creation number + sequence number
                assert str.readByte() == 3
                str.readLong()
                if (dirty) {
                    assert str.readLong() == 0
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/kstatus/helper.go

    // tracking changes. When read to commit (typically to Kubernetes), any messages with Dirty=false can
    // be discarded.
    type WrappedStatus struct {
    	// Status is the object that is wrapped.
    	config.Status
    	// Dirty indicates if this object has been modified at all.
    	// Note: only changes wrapped in Mutate are tracked.
    	Dirty bool
    }
    
    func Wrap(s config.Status) *WrappedStatus {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_minimize_dirty_cov.txt

    # Test that minimization doesn't use dirty coverage snapshots when it
    # is unable to actually minimize the input. We do this by checking that
    # an expected value appears in the cache. If a dirty coverage map is used
    # (i.e. the coverage map generated during the last minimization step,
    # rather than the map provided with the initial input) then this value
    # is unlikely to appear in the cache, since the map generated during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

    Active(anon):   17189920 kB
    Inactive(anon):      460 kB
    Active(file):     601188 kB
    Inactive(file): 13817828 kB
    Unevictable:           0 kB
    Mlocked:               0 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    Dirty:                20 kB
    Writeback:             0 kB
    AnonPages:      17189100 kB
    Mapped:            24008 kB
    Shmem:              1312 kB
    Slab:            1291916 kB
    SReclaimable:    1236196 kB
    SUnreclaim:        55720 kB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. 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)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

       * contains space-separated values: a state, a key, and optional state-specific values.
       *
       *   o DIRTY lines track that an entry is actively being created or updated. Every successful
       *     DIRTY action should be followed by a CLEAN or REMOVE action. DIRTY lines without a matching
       *     CLEAN or REMOVE indicate that temporary files may need to be deleted.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. 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)
  8. cluster/gce/gci/testdata/kube-apiserver/base.template

    readonly DOCKER_REGISTRY="registry.k8s.io"
    readonly ENABLE_LEGACY_ABAC=false
    readonly ETC_MANIFESTS=${KUBE_HOME}/etc/kubernetes/manifests
    readonly KUBE_API_SERVER_DOCKER_TAG=v1.11.0-alpha.0.1808_3c7452dc11645d-dirty
    readonly LOG_OWNER_USER=$(id -un)
    readonly LOG_OWNER_GROUP=$(id -gn)
    readonly SERVICEACCOUNT_ISSUER=https://foo.bar.baz
    readonly SERVICEACCOUNT_KEY_PATH=/foo/bar/baz.key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

        /**
         * construct graph from a "dirty" tree
         */
        public MetadataGraph(MetadataTreeNode tree) throws MetadataResolutionException {
            this(tree, false, false);
        }
        // ------------------------------------------------------------------------
        /**
         * construct graph from a "dirty" tree
         *
         * @param tree "dirty" tree root
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/testdata/output/range_equals.log

    2020-06-29T23:37:27.285053Z	info	FLAG: --disableInternalTelemetry="false"
    2020-06-29T23:37:27.285550Z	info	Version 1.6.3-1e8c62baad31c829c5993235c429248f36a85478-dirty-Modified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
Back to top