Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for persistent (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    It will have no impact on <<dynamic_versions.adoc#sub:declaring_dependency_with_changing_version,changing versions>> (like `-SNAPSHOT`) whose coordinates remain the same, though the content may change.
    Gradle will even emit a warning when persisting lock state and changing dependencies are present in the resolution result.
    ====
    
    == Enabling locking on configurations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                if (key is String) {
                    // Externally set system properties can only use Strings as keys. If the removal argument is a string
                    // then it can affect externally set property and has to be persisted. Then removal will be applied on
                    // the next run from cache.
                    mutatedSystemProperties[key] = SystemPropertyRemove(key)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// preserveUnknownFields indicates that object fields which are not specified
    	// in the OpenAPI schema should be preserved when persisting to storage.
    	// apiVersion, kind, metadata and known fields inside metadata are always preserved.
    	// This field is deprecated in favor of setting `x-preserve-unknown-fields` to true in `spec.versions[*].schema.openAPIV3Schema`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Specifies whether dependency resolution needs to be persisted for locking
         *
         * @since 4.8
         */
        public void setWriteDependencyLocks(boolean writeDependencyLocks) {
            this.writeDependencyLocks = writeDependencyLocks;
        }
    
        /**
         * Returns true when dependency resolution is to be persisted for locking
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/internal/telemetry/telemetry.go

    //
    // See the documentation of [Mode] for a description of the supported mode
    // values.
    //
    // An error is returned if the provided mode value is invalid, or if an error
    // occurs while persisting the mode value to the file system.
    func SetMode(mode string) error {
    	return telemetry.SetMode(mode)
    }
    
    // Dir returns the telemetry directory.
    func Dir() string {
    	return telemetry.Dir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonParametersTest.groovy

            parameters.effectiveJvmArgs.contains("-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005") == parseBoolean(flag)
    
            where:
            flag << ["true", "false"]
        }
    
        def "debug mode is persisted when defaults are applied"() {
            when:
            parameters.setDebug(true)
            parameters.applyDefaultsFor(jvmDefault)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    // and is given the currently persisted object as input.
    // TODO: rename this function because the name implies it is related to applyPatcher
    func (p *patcher) applyPatch(ctx context.Context, _, currentObject runtime.Object) (objToUpdate runtime.Object, patchErr error) {
    	// Make sure we actually have a persisted currentObject
    	tracing.SpanFromContext(ctx).AddEvent("About to apply patch")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - The PersistentVolume controller no longer automatically assigns a default `StorageClass` to Persistent Volume Claims (PVCs) with an empty `storageClassName`.
       ([#122704](https://github.com/kubernetes/kubernetes/pull/122704), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. operator/pkg/util/progress/progress.go

    // around the limitations of the pb library, which will only support single lines. To do this, we aggregate
    // the current components into a single line, and as components complete there final state is persisted to a new line.
    type Log struct {
    	components map[string]*ManifestLog
    	bar        *pb.ProgressBar
    	template   string
    	mu         sync.Mutex
    	state      InstallState
    }
    
    func NewLog() *Log {
    	return &Log{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // with submission of new work, and either one part or another needs to unpark
    // another worker thread. If they both fail to do that, we can end up with
    // semi-persistent CPU underutilization.
    //
    // The general pattern for submission is:
    // 1. Submit work to the local or global run queue, timer heap, or GC state.
    // 2. #StoreLoad-style memory barrier.
    // 3. Check sched.nmspinning.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top